-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "npm-check-install",
"version": "0.0.4",
"description": "Automatically check and install npm packages",
"author": "Canner",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint src",
"clean": "rimraf lib",
"build": "babel src -d lib --copy-files",
"build:watch": "babel src -d lib -w --copy-files",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.14.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.2.0",
"babel-plugin-import": "^1.7.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.11.6",
"del": "^2.0.2",
"eslint": "^4.18.2",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-prettier": "^2.7.0",
"husky": "^1.0.1",
"isparta": "^4.0.0",
"jest": "^21.1.0",
"jest-cli": "^23.2.0",
"lint-staged": "^7.3.0",
"prettier": "^1.5.2",
"rimraf": "^2.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md,tx,tsx}": [
"prettier --write",
"git add"
]
}
}