-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
executable file
·71 lines (71 loc) · 2.33 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
67
68
69
70
71
{
"name": "ts-unused-exports",
"version": "10.1.0",
"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"
},
"funding": "https://github.com/pzavolinsky/ts-unused-exports?sponsor=1",
"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": {
"bump": "npm version patch",
"build": "tsc",
"exec": "bin/ts-unused-exports",
"lint:fix": "./node_modules/.bin/eslint --ext .ts src --fix",
"lint": "./node_modules/.bin/eslint --ext .ts src",
"pack": "docker build -t ts-unused-exports . && docker run -v $PWD/lib:/usr/src/lib ts-unused-exports",
"prepublish": "npm test",
"report-coverage-to-coveralls": "cat ./coverage/lcov.info | coveralls",
"test:cc": "nyc npm run test:unit:raw",
"test:itest": "cd ispec && bash ./run.sh",
"test:unit:only": "TS_NODE_FILES=true cucumber-js --require-module ts-node/register --exit -r src/test.ts --tags '@only'",
"test:unit:raw": "TS_NODE_FILES=true cucumber-js --require-module ts-node/register --exit -r src/test.ts --tags 'not @ignore'",
"test:unit": "VERBOSE=1 npm run test:unit:raw",
"test": "npm run lint && npm run build && npm run test:cc && npm run test:itest",
"watch": "tsc -w"
},
"bin": {
"ts-unused-exports": "bin/ts-unused-exports"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"codecov": "^3.6.5",
"coveralls": "^3.0.11",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^3.1.2",
"nyc": "^15.0.0",
"pickled-cucumber": "^2.0.14",
"prettier": "^2.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.0"
},
"dependencies": {
"chalk": "^4.0.0",
"tsconfig-paths": "^3.9.0"
},
"peerDependencies": {
"typescript": ">=3.8.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": false
}
}
}