-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 821 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": "atomic",
"version": "0.0.1",
"description": "atomic CLI",
"private": true,
"bin": {
"atomic": "bin/atomic"
},
"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": {
"enquirer": "^2.3.1",
"gluegun": "^2.1.0"
},
"devDependencies": {
"jest": "^23.6.0",
"prettier": "^1.12.1",
"standard": "^12.0.1"
},
"jest": {
"testEnvironment": "node"
},
"standard": {
"env": [
"jest"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}