generated from bennycode/ts-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.46 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
65
66
{
"bugs": {
"url": "https://github.com/bennyn/ts-node-starter/issues"
},
"dependencies": {},
"description": "",
"devDependencies": {
"@types/jasmine": "3.6.2",
"@typescript-eslint/eslint-plugin": "4.0.0",
"@typescript-eslint/parser": "3.10.1",
"eslint": "7.14.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-typescript-sort-keys": "1.5.0",
"generate-changelog": "1.8.0",
"husky": "4.3.0",
"jasmine": "3.6.3",
"lint-staged": "10.5.1",
"nyc": "15.1.0",
"prettier": "2.2.0",
"pretty-quick": "3.1.0",
"rimraf": "3.0.2",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"engines": {
"node": ">= 10.9",
"yarn": ">= 1"
},
"files": [
"dist",
"!dist/**/*.test.*"
],
"homepage": "https://documentup.com/bennyn/ts-node-starter",
"keywords": [],
"license": "UNLICENSED",
"main": "dist/index.js",
"name": "ts-node-starter",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/bennyn/ts-node-starter.git"
},
"scripts": {
"build": "tsc",
"changelog:commit": "git add CHANGELOG.md && git commit -m \"docs: updated CHANGELOG.md\"",
"clean": "rimraf .nyc_output coverage dist",
"dist": "yarn clean && yarn build",
"fix": "yarn fix:other && yarn fix:code",
"fix:code": "yarn lint:code --fix",
"fix:other": "yarn prettier --write",
"lint": "yarn lint:types && yarn lint:code && yarn lint:other",
"lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:other": "yarn prettier --list-different",
"lint:types": "tsc --noEmit",
"postversion": "git push origin && git push origin --tags && npm publish",
"prettier": "prettier --ignore-path .gitignore --loglevel silent \"**/*.{json,scss,yml}\"",
"preversion": "git checkout master && git pull && yarn && yarn test && yarn dist",
"release:major": "generate-changelog -M -x \"chore,docs,refactor,style,test\" && yarn changelog:commit && npm version major",
"release:minor": "generate-changelog -m -x \"chore,docs,refactor,style,test\" && yarn changelog:commit && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,docs,refactor,style,test\" && yarn changelog:commit && npm version patch",
"test": "nyc --nycrc-path=nyc.config.coverage.json jasmine --config=jasmine.json",
"test:dev": "nyc --nycrc-path=nyc.config.json jasmine --config=jasmine.json"
},
"version": "0.0.0"
}