-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "@faire/ts-unused-class-members",
"version": "1.0.0",
"description": "Find unused class variables and methods in a typescript project",
"main": "dist/index.js",
"repository": "[email protected]:Faire/ts-unused-class-members.git",
"author": "Runbiao Zhong <[email protected]>",
"license": "MIT",
"bin": "dist/index.js",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"dist/"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest",
"test:ci": "jest --ci"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"@types/node": "^15.6.0",
"@types/yargs": "^16.0.1",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.21",
"ts-morph": "^15.1.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"husky": "^6.0.0",
"jest": "^28.1.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"semantic-release": "^17.4.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.5.5"
}
}