-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 933 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
{
"name": "projector-tslint",
"version": "0.0.0",
"description": "Projector wrapper for TSLint",
"main": "index.js",
"files": ["index.js", "types.js"],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint:flow": "flow",
"lint:staged": "lint-staged"
},
"author": "Stanislav Sysoev <@d4rkr00t>",
"license": "MIT",
"peerDependencies": {
"tslint": ">= 5.6.0 < 6"
},
"devDependencies": {
"flow-bin": "^0.53.1",
"glob": "^7.1.2",
"jest": "^20.0.4",
"lint-staged": "^4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"tslint": "^5.6.0",
"typescript": "^2.5.1"
},
"pre-commit": ["lint:flow", "test:coverage", "lint:staged"],
"lint-staged": {
"*.js": ["prettier --write --print-width 120", "git add"]
},
"jest": {
"collectCoverageFrom": ["*.js"],
"coveragePathIgnorePatterns": ["node_modules", "<rootDir>/types.js"]
}
}