-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
63 lines (63 loc) · 1.37 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
{
"name": "generator-api",
"version": "1.5.3",
"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",
"lint": "standard",
"release": "np"
},
"author": "ndelvalle <[email protected]>",
"contributors": [
"Christian Gill <[email protected]> (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": "^2.0.3",
"yosay": "^2.0.0"
},
"devDependencies": {
"eslint-config-standard": "^11.0.0",
"mocha": "^6.1.4",
"np": "^6.2.2",
"pre-commit": "^1.1.3",
"standard": "^11.0.0",
"yeoman-assert": "^3.1.0",
"yeoman-test": "^1.7.0"
},
"bugs": {
"url": "https://github.com/ndelvalle/generator-api/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ndelvalle/generator-api.git"
},
"pre-commit": [
"lint"
],
"standard": {
"ignore": [
"/generators/app/templates/model/",
"/generators/app/templates/routes.js"
]
},
"engines": {
"node": "8",
"npm": "5"
}
}