-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "dext-core-utils",
"version": "0.6.0",
"description": "Utility modules shared between Dext and Dext Package Manager.",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"test": "jest --coverage",
"format": "npm run format:js && npm run format:md",
"format:js": "prettier --write '{*.json,{src,__tests__,__mocks__}/**/*.js}'",
"format:md": "prettier --parser markdown --write '*.md'"
},
"author": "Vu Tran <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/vutran/dext-core-utils"
},
"license": "MIT",
"dependencies": {
"conf": "^1.4.0",
"cross-spawn": "^6.0.5",
"download": "^6.2.5",
"npm-name": "^3.2.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1"
},
"lint-staged": {
"{__mocks__,__tests__,src}/**/*.js{,x}": [
"prettier --write --trailing-comma es5 --single-quote --tab-width 2",
"git add"
]
}
}