-
Notifications
You must be signed in to change notification settings - Fork 311
/
Copy pathpackage.json
124 lines (124 loc) · 3.19 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
118
119
120
121
122
123
124
{
"name": "generator-rest",
"version": "0.7.0",
"description": "RESTful API generator using NodeJS, Express and MongoDB (Mongoose). 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.4.6",
"chalk": "^1.0.0",
"lodash": "^4.15.0",
"pluralize": "^3.0.0",
"rand-token": "^0.2.1",
"recast": "^0.11.13",
"yeoman-generator": "^0.24.1",
"yosay": "^1.0.0"
},
"devDependencies": {
"apidoc": "^0.16.1",
"apidoc-markdown": "^0.2.0",
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.0.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babel-runtime": "^6.11.6",
"bcrypt": "^0.8.6",
"body-parser": "^1.15.1",
"bodymen": "^1.0.1",
"compression": "^1.6.2",
"copy": "^0.3.0",
"cors": "^2.7.1",
"cross-env": "^3.0.0",
"crypto": "0.0.3",
"del-cli": "^0.2.0",
"dotenv-safe": "^2.3.1",
"eslint": "^3.1.1",
"eslint-config-standard": "^6.0.0",
"eslint-config-xo-space": "^0.14.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.13.4",
"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",
"jsonwebtoken": "^7.1.9",
"mockgoose": "^6.0.8",
"mongoose": "^4.4.19",
"mongoose-create-unique": "^0.4.1",
"mongoose-keywords": "^0.3.1",
"morgan": "^1.7.0",
"nock": "^8.0.0",
"nodemon": "^1.10.2",
"nyc": "^8.1.0",
"opn-cli": "^3.1.0",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^2.1.0",
"querymen": "^2.0.0",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"sendgrid": "^4.0.2",
"sinon": "^1.17.5",
"supertest": "^2.0.0",
"supertest-as-promised": "^4.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"
}