-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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": "@apiko/bootstrap-project",
"version": "0.6.0",
"description": "A CLI for bootstrapping Apiko projects",
"private": false,
"bin": {
"bootstrap-project": "bin/bootstrap-project"
},
"scripts": {
"format": "prettier --write **/*.{js,json} && standard --fix",
"lint": "standard",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage"
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"command-exists": "^1.2.8",
"gluegun": "^2.1.0",
"make-dir": "^2.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^23.6.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
}
}