forked from ndelvalle/generator-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 KB
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
{
"name": "generator-api",
"version": "1.5.0",
"description": "Yeoman generator for creating RESTful NodeJS APIs, using ES6, Mongoose and Express",
"main": "index.js",
"scripts": {
"prepublish": "npm test",
"test": "mocha --bail test/*.spec.js",
"eslint": "eslint . --ext .js",
"release": "np"
},
"author": "ndelvalle <nicolas.delvalle@gmail.com>",
"contributors": [
"Christian Gill <gillchristiang@gmail.com> (https://gillchristian.xyz/)"
],
"license": "MIT",
"keywords": [
"yeoman-generator",
"generator-api",
"api",
"mongoose",
"mongo",
"express"
],
"files": [
"generators/app",
"generators/model"
],
"dependencies": {
"to-case": "^2.0.0",
"yeoman-generator": "^1.1.0",
"yosay": "^2.0.0"
},
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.0.2",
"np": "^2.12.0",
"pre-commit": "^1.1.3",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.5.1"
},
"bugs": {
"url": "https://github.com/ndelvalle/generator-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndelvalle/generator-api.git"
},
"pre-commit": [
"eslint"
]
}