-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.49 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": "typescript-starter",
"version": "0.0.0",
"description": "tbd",
"main": "index.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf tsconfig.tsbuildinfo ./build ./coverage",
"compile": "tsc -p ./tsconfig.json",
"eslint": "eslint -c ./.eslintrc.js ./src/**/*.ts ./tests/**/*.ts",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"test": "run-s build eslint test:unit",
"test:unit": "jest --coverage",
"watch": "npm run compile -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christian-bromann/typescript-starter.git"
},
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/christian-bromann/typescript-starter/issues"
},
"homepage": "https://github.com/christian-bromann/typescript-starter#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.6",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"release-it": "^14.10.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}