-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.81 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
{
"name": "nayra-cli",
"version": "1.0.0",
"main": "index.js",
"description": "a CLI for Nayra CMS API",
"license": "GNU General Public License v3.0",
"config": {
"testFiles": "+(cli)/**/{,**/}*.test.js"
},
"scripts": {
"init-api": "node ./index.js init-api",
"migrations": "cd tasks && jake migrate",
"add-resource": "node ./index.js add-resource",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text-summary ./node_modules/mocha/bin/mocha --recursive $npm_package_config_testFiles --exit"
},
"bin": {
"nayra-cli": "./index.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"boxen": "^4.2.0",
"bunyan": "^1.8.12",
"bunyan-express-serializer": "^1.0.0",
"bunyan-format": "^0.2.1",
"chalk": "^3.0.0",
"chance": "^1.1.4",
"clear": "^0.1.0",
"commander": "^4.0.1",
"cors": "^2.8.1",
"dotenv": "^7.0.0",
"download-git-repo": "^3.0.2",
"ejs": "^3.0.1",
"figlet": "^1.2.4",
"inquirer": "^7.0.0",
"lodash": "^4.17.15",
"ulog": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^3.0.6",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-mocha": "^6.2.2",
"faker": "^4.1.0",
"jasmine-core": "^2.2.0",
"mocha": "^6.2.0",
"mock-fs": "^4.11.0",
"mock-req-res": "^1.1.4",
"node-mongoose-fixtures": "^0.3.0",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.3",
"sinon": "^8.0.1",
"supertest": "^4.0.2"
},
"repository": {
"type": "git",
"url": "[email protected]:nayracoop/nayra-cli.git"
},
"author": "nayracoop",
"bugs": {
"url": "https://github.com/nayracoop/nayra-cli/issues"
},
"homepage": "https://nayra.coop",
"engines": {
"node": "stable"
}
}