This repository was archived by the owner on Feb 3, 2021. It is now read-only.
forked from smeijer/unimported
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 KB
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
72
73
74
75
{
"name": "unimported",
"version": "1.5.0",
"description": "Scans your nodejs project folder and shows obsolete files and modules",
"main": "./dist/unimported.js",
"bin": {
"unimported": "bin/unimported.js"
},
"source": "./src/index.ts",
"license": "MIT",
"author": "Stephan Meijer <stephan@meijer.ws>",
"repository": {
"type": "git",
"url": "git+https://github.com/smeijer/unimported.git"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "tsc --noEmit && eslint 'src/**/*.ts' --quiet --fix",
"prepare": "npm run build",
"run": "npm run build && node ./dist/index.js",
"test": "jest",
"ci:lint": "eslint -c ./.eslintrc.js",
"ci:tsc": "tsc --noEmit --project ./tsconfig.json"
},
"files": [
"src",
"dist",
"bin"
],
"keywords": [
"unrequired",
"redundant",
"obsolete",
"unimported",
"unreferenced"
],
"dependencies": {
"@typescript-eslint/parser": "^2.29.0",
"@typescript-eslint/typescript-estree": "^2.29.0",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"flow-remove-types": "^2.123.0",
"glob": "^7.1.6",
"ora": "^4.0.4",
"resolve": "^1.17.0",
"term-size": "^2.2.0",
"typescript": "^3.8.3",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.20",
"@types/jest-in-case": "^1.0.3",
"@types/node": "^13.13.2",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"console-testing-library": "^0.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-in-case": "^1.0.2",
"lint-staged": "^10.1.7",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}