-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 988 Bytes
/
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
{
"name": "custom-starter",
"version": "1.0.4",
"description": "Start your projects fast simply using already created boilerplate repos",
"repository": {
"type": "git",
"url": "https://github.com/jediyozh/custom-starter"
},
"license": "MIT",
"author": {
"name": "Eli Levit",
"email": "jediyozh@gmail.com"
},
"main": "bin/index.js",
"bin": {
"custom-starter": "bin/index.js"
},
"scripts": {
"precommit": "lint-staged",
"test": "jest"
},
"lint-staged": {
"linters": {
"*.js": [
"./node_modules/.bin/prettier --write",
"git add"
]
}
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"configstore": "^4.0.0",
"execa": "^1.0.0",
"fs-extra": "^7.0.1",
"husky": "^1.3.1",
"inquirer": "^6.2.2",
"ora": "^3.1.0"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}