-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "@mikermcneil/kit",
"version": "1.4.1",
"description": "A couple of command-line utilities.",
"main": "index.js",
"scripts": {
"test": "npm run custom-tests && nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi",
"custom-tests": "echo \"No custom tests available.\"",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
},
"bin": {
"kit": "./bin/kit.js",
"kit-about": "./bin/kit-about.js",
"kit-exclaim": "./bin/kit-exclaim.js",
"kit-deps": "./bin/kit-deps.js",
"kit-install": "./bin/kit-install.js",
"kit-pkg": "./bin/kit-pkg.js"
},
"author": "Mike McNeil",
"license": "MIT",
"dependencies": {
"async": "2.0.1",
"chalk": "1.1.3",
"commander": "2.8.1",
"copy-paste": "1.3.0",
"figlet": "1.1.2",
"lodash": "3.10.1",
"machine-as-script": "^4.0.6",
"machinepack-fs": "^5.1.0",
"machinepack-localmachinepacks": "^1.8.0",
"machinepack-npm": "6.4.0",
"machinepack-process": "^2.0.2",
"rodestead": "sailshq/rodestead",
"strip-ansi": "3.0.1",
"word-wrap": "1.1.0"
},
"devDependencies": {
"eslint": "3.5.0"
},
"repository": "https://github.com/mikermcneil/kit.git"
}