-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "@appirio/ezbake",
"version": "3.6.4",
"description": "The project scaffolder for everyone",
"main": "index.js",
"repository": "https://github.com/appirio-digital/ezbake.git",
"author": "Eric Nograles <[email protected]>",
"license": "MIT",
"dependencies": {
"fs-extra": "^4.0.2",
"inquirer": "^3.3.0",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"rimraf": "^2.6.2",
"shell-escape": "^0.2.0",
"uuid": "^3.1.0",
"yargs": "^9.0.1"
},
"bin": {
"ezbake": "./bin/ezbake.js"
},
"scripts": {
"precommit": "lint-staged",
"debug:prepare": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js prepare",
"debug:sync": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js sync",
"debug:plug": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js plug",
"debug:unplug": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js unplug",
"debug:cook": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js cook -r Query",
"debug:menu": "node --inspect-brk=0.0.0.0:5858 --nolazy index.js menu",
"test": "echo \"TODO: Run integration for entire app and assert filesystem\"",
"postinstall": "node install/node 8.12.0"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"prettier": "^1.7.4"
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/prettier --single-quote --write",
"git add"
]
},
"publishConfig": {
"access": "public"
}
}