-
Notifications
You must be signed in to change notification settings - Fork 312
/
package.json
117 lines (117 loc) · 3.02 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "generator-rest",
"version": "0.11.1",
"description": "RESTful API generator using NodeJS, Express and MongoDB. Watch https://youtu.be/6x-ijyG-ack",
"homepage": "https://github.com/diegohaz/generator-rest",
"author": {
"name": "Diego Haz",
"email": "[email protected]",
"url": "https://github.com/diegohaz"
},
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"yeoman-generator",
"rest",
"rest-api",
"restful",
"node",
"nodejs",
"express",
"mongo",
"mongodb",
"mongoose",
"passport",
"ava",
"api",
"es6",
"babel",
"generator",
"yeoman"
],
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^1.0.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-standard": "^2.3.1",
"lodash": "^4.15.0",
"pluralize": "^3.0.0",
"rand-token": "^0.4.0",
"recast": "^0.11.13",
"reserved-words": "^0.1.1",
"yeoman-generator": "^0.24.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.18.2",
"bodymen": "^1.0.3",
"compression": "^1.7.1",
"cors": "^2.8.4",
"dotenv-safe": "^4.0.3",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.16.2",
"express-force-ssl": "^0.3.2",
"fs-extra": "^0.30.0",
"gulp": "^3.9.0",
"gulp-coveralls": "^0.1.0",
"gulp-eslint": "^2.0.0",
"gulp-exclude-gitignore": "^1.0.0",
"gulp-istanbul": "^1.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-mocha": "^2.0.0",
"gulp-nsp": "^2.1.0",
"gulp-plumber": "^1.0.0",
"jest-cli": "^20.0.4",
"jsonwebtoken": "^8.1.0",
"mockgoose": "^6.0.8",
"mongoose": "^4.12.4",
"mongoose-create-unique": "^0.4.4",
"mongoose-keywords": "^0.3.2",
"morgan": "^1.7.0",
"nock": "^9.0.2",
"nodemon": "^1.10.2",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^3.0.0",
"querymen": "^2.1.3",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"sendgrid": "^4.0.2",
"sinon": "^4.0.1",
"supertest": "^3.0.0",
"yeoman-assert": "^2.0.0",
"yeoman-test": "^1.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"mocha": true
}
},
"repository": "diegohaz/generator-rest",
"scripts": {
"prepublish": "gulp prepublish",
"test": "gulp",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"license": "MIT"
}