-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.17 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "bolt-releases",
"version": "0.0.0",
"main": "lib/index.js",
"bin": "bin.js",
"author": "James Kyle <me@thejameskyle.com>",
"license": "MIT",
"files": [
"lib",
"bin.js"
],
"keywords": [
"bolt",
"releases",
"publishing",
"versions",
"changelogs",
"git"
],
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"format": "prettier --write src/**/*.js",
"prepublish": "yarn build",
"precommit": "lint-staged"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.56.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4"
},
"dependencies": {
"bolt": "^0.13.0",
"chalk": "^2.1.0",
"meow": "^3.7.0",
"semver": "^5.4.1",
"strip-indent": "^2.0.0",
"typeable-promisify": "^2.0.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"resetMocks": true,
"testMatch": [
"<rootDir>/src/**/__tests__/*.js"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}