forked from feathersjs-ecosystem/generator-feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "generator-feathers",
"description": "A Yeoman generator for a Feathers application",
"version": "4.1.1",
"homepage": "https://github.com/feathersjs/generator-feathers",
"main": "generators/app/index.js",
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-app-generator",
"yeoman-generator",
"yeoman"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/generator-feathers/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/generator-feathers.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/generator-feathers/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"eslint": "eslint lib/. generators/**/index.js test/. --config .eslintrc.json",
"test": "npm run eslint && npm run mocha",
"mocha": "mocha test/generators.test.js --timeout 300000 --exit"
},
"dependencies": {
"@feathersjs/jscodeshift": "^0.5.0",
"@feathersjs/tools": "^0.1.7",
"lodash": "^4.17.15",
"node-dir": "^0.1.17",
"randomstring": "^1.1.5",
"semver": "^6.3.0",
"validate-npm-package-name": "^3.0.0",
"yeoman-generator": "^4.1.0"
},
"devDependencies": {
"@feathersjs/authentication": "^4.3.7",
"@feathersjs/authentication-local": "^4.3.7",
"@feathersjs/authentication-oauth": "^4.3.7",
"@feathersjs/configuration": "^4.3.7",
"@feathersjs/errors": "^4.3.7",
"@feathersjs/express": "^4.3.7",
"@feathersjs/feathers": "^4.3.7",
"@feathersjs/primus": "^4.3.7",
"@feathersjs/socketio": "^4.3.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"eslint": "^6.5.1",
"express-cassandra": "^2.3.2",
"feathers-cassandra": "^3.3.0",
"feathers-knex": "^7.1.0",
"feathers-memory": "^4.1.0",
"feathers-mongodb": "^6.0.0",
"feathers-mongoose": "^8.1.0",
"feathers-nedb": "^5.1.0",
"feathers-objection": "^4.4.3",
"feathers-sequelize": "^6.1.0",
"helmet": "^3.21.1",
"jshint": "^2.10.2",
"mocha": "^6.2.1",
"mongodb": "^3.3.2",
"mongoose": "^5.7.5",
"nedb": "^1.8.0",
"nodemon": "^1.19.3",
"objection": "^1.6.11",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"sequelize": "^5.19.6",
"serve-favicon": "^2.5.0",
"sqlite3": "^4.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"winston": "^3.2.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^2.0.0"
}
}