forked from pzavolinsky/ts-unused-exports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.06 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
{
"name": "ts-unused-exports",
"version": "2.0.11",
"description": "ts-unused-exports finds unused exported symbols in your Typescript project",
"main": "lib/app.js",
"repository": {
"type": "git",
"url": "https://github.com/pzavolinsky/ts-unused-exports.git"
},
"keywords": [
"typescript",
"tslint",
"unused exports",
"dead code"
],
"author": "Patricio Zavolinsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/pzavolinsky/ts-unused-exports/issues"
},
"homepage": "https://github.com/pzavolinsky/ts-unused-exports",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "npm run build && jasmine",
"exec": "bin/ts-unused-exports"
},
"bin": {
"ts-unused-exports": "bin/ts-unused-exports"
},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/strip-json-comments": "0.0.28",
"jasmine": "^2.99.0",
"tslint": "^4.5.1"
},
"dependencies": {
"chalk": "^2.4.1",
"strip-json-comments": "^2.0.1",
"tsconfig-paths": "^3.5.0",
"typescript": "^2.9.2"
}
}