-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "sails-generate",
"version": "2.0.13",
"description": "Runner script for sails generators",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@sailshq/lodash": "^3.10.3",
"async": "2.6.4",
"chalk": "2.3.0",
"flaverr": "^1.0.0",
"fs-extra": "0.30.0",
"machinepack-process": "^4.0.0",
"parasails": "^0.9.2",
"read": "1.0.7",
"reportback": "^2.0.1",
"sails.io.js-dist": "^1.0.0"
},
"devDependencies": {
"checksum": "0.1.1",
"eslint": "4.11.0",
"mocha": "3.0.2"
},
"scripts": {
"test": "npm run lint && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha -b",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --report-unused-disable-directives --ignore-pattern 'test/' --ignore-pattern 'templates/' && echo '✔ This code looks good.'"
},
"keywords": [
"sails",
"generate",
"sails-generate",
"generator",
"automation"
],
"author": "Mike McNeil",
"repository": {
"type": "git",
"url": "git://github.com/balderdashy/sails-generate.git"
},
"license": "MIT",
"bugs": {
"url": "http://github.com/balderdashy/sails-generate/issues"
}
}