-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ts-node-lib-starter",
"version": "1.0.0",
"description": "nodejs typescript library starter",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "npm run lint && npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"preversion": "npm run lint && npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dzz9143/ts-node-lib-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dzz9143/ts-node-lib-starter/issues"
},
"homepage": "https://github.com/dzz9143/ts-node-lib-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^12.7.6",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"concurrently": "^5.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"ts-jest": "^26.5.0",
"ts-node": "^8.4.1",
"typescript": "^4.1.3"
},
"dependencies": {
"debug": "^4.1.1",
"lodash": "^4.17.19"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
}
}