-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.81 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
{
"name": "unexport",
"version": "1.0.6",
"description": "find unused exports",
"main": "./bin/index.js",
"bin": {
"unexport": "./bin/index.js"
},
"scripts": {
"cli": "node build/cli.js",
"dev": "node build/dev.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch --silent=false"
},
"keywords": [
"CLI",
"export",
"node modules",
"unexport"
],
"author": {
"name": "nishchay17",
"url": "https://www.nishchay17.com"
},
"license": "MIT",
"homepage": "https://github.com/nishchay17/unexport",
"bugs": {
"url": "https://github.com/nishchay17/unexport/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nishchay17/unexport.git"
},
"dependencies": {
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"cli-color": "^2.0.3",
"glob": "^10.3.10",
"tslib": "~2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/babel__parser": "^7.1.1",
"@types/babel__traverse": "^7.20.5",
"@types/jest": "~29.5.12",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "~6.15.0",
"@typescript-eslint/parser": "~6.15.0",
"eslint": "~8.56.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-jest": "~27.6.3",
"jest": "~29.7.0",
"prettier": "~3.1.1",
"rimraf": "~5.0.5",
"ts-api-utils": "~1.0.3",
"ts-jest": "~29.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"engines": {
"node": ">= 20.9 < 21"
}
}