-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.31 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.31 KB
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": "design-patterns",
"description": "Design Patterns in TypeScript",
"version": "0.1.0",
"author": "Felipe Hlibco",
"repository": {
"type": "git",
"url": "https://github.com/hlibco/design-patterns.git"
},
"engines": {
"node": ">=8.10.0",
"yarn": ">=1.4.0"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \".src/**/*.ts\" --ignore-path ./.prettierignore && git status",
"lint": "tslint --project . -c tslint.json -t stylish --fix 'src/**/*.+(ts|js)'",
"build": "rm -Rf dist && tsc",
"test:watch": "jest --watch --verbose --detectOpenHandles",
"test:cov": "rm -Rf ./coverage && jest --coverage --collectCoverage --verbose --detectOpenHandles",
"test:cov-html": "yarn test:cov && opn coverage/index.html",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand"
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write --ignore-path ./.prettierignore",
"git add"
]
},
"devDependencies": {
"@types/jest": "24.0.20",
"@types/node": "12.11.7",
"debug": "4.1.1",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "9.4.2",
"prettier": "1.18.2",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tslib": "1.10.0",
"tslint": "5.20.0",
"typescript": "3.6.4"
}
}