-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 768 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 768 Bytes
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
{
"name": "parsy",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"run": "ts-node src/runner.ts",
"test": "jest",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"format": "yarn prettier --write ."
},
"devDependencies": {
"@types/jest": "^26.0.13",
"husky": "^4.3.0",
"jest": "^26.4.2",
"prettier": "2.1.2",
"ts-jest": "^26.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
}
}