forked from nadeesha/ts-prune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "ts-prune",
"version": "0.0.0-development",
"main": "lib/index.js",
"author": "Nadeesha Cabral <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "rm -rf lib && yarn build",
"pretest": "npm run lint",
"test": "jest --coverage",
"test:integration": "sh integration/test.sh",
"lint": "eslint . --cache --fix --ext .ts,.tsx",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/json5": "^0.0.30",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.1",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"semantic-release": "^17.2.3",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.0",
"typescript": "^4.3.2"
},
"dependencies": {
"commander": "^6.2.1",
"cosmiconfig": "^7.0.1",
"json5": "^2.1.3",
"lodash": "^4.17.21",
"true-myth": "^4.1.0",
"ts-morph": "^11.0.2"
},
"files": [
"/lib"
],
"bin": "./lib/index.js",
"repository": "[email protected]:nadeesha/ts-prune.git",
"release": {
"branches": [
"master"
]
},
"types": "lib/index.d.ts"
}