-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "ashfurrow-peril",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ashfurrow/peril-settings",
"author": "Ash Furrow <ash@ashfurrow.com>",
"license": "MIT",
"scripts": {
"precommit": "lint-staged"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.25",
"danger": "^3.7.18",
"danger-plugin-spellcheck": "^0.7.7",
"danger-plugin-yarn": "^0.3.2",
"github-webhook-event-types": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.0.2",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"ts-jest": "^21.0.0",
"typescript": "^2.3.2"
},
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json"]
},
"lint-staged": {
"*.@(ts|tsx)": ["yarn prettier --write", "jest", "git add"],
"*.json": ["yarn prettier --write", "git add"]
}
}