-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 976 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
{
"name": "projector-typescript",
"version": "0.0.0",
"description": "Projector wrapper for TypeScript",
"main": "index.js",
"files": ["index.js", "utils.js"],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint:flow": "flow",
"lint:staged": "lint-staged"
},
"author": "Stanislav Sysoev <@d4rkr00t>",
"license": "MIT",
"dependencies": {
"chalk": "^2.1.0",
"lodash.merge": "^4.6.0"
},
"peerDependencies": {
"typescript": ">= 2.5.0 < 3"
},
"devDependencies": {
"flow-bin": "^0.53.1",
"jest": "^20.0.4",
"lint-staged": "^4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"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"]
}
}