-
-
Notifications
You must be signed in to change notification settings - Fork 194
/
Copy pathpackage.json
107 lines (107 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "npkill",
"version": "0.12.2",
"description": "List any node_modules directories in your system, as well as the space they take up. You can then select which ones you want to erase to free up space.",
"exports": "./lib/index.js",
"type": "module",
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"bin": {
"npkill": "lib/index.js"
},
"author": "Nya Garcia & Juan Torres",
"repository": {
"type": "git",
"url": "https://github.com/zaldih/npkill"
},
"license": "MIT",
"keywords": [
"cli",
"free up space",
"npm",
"node",
"modules",
"clean",
"tool",
"delete",
"find",
"interactive"
],
"files": [
"lib/**/*"
],
"scripts": {
"build": "gulp",
"build-go-bin": "gulp buildGo",
"start": "node --loader ts-node/esm --no-warnings ./src/index.ts",
"test": "node --experimental-vm-modules --experimental-modules node_modules/jest/bin/jest.js --verbose",
"test:watch": "npm run test -- --watch",
"test:mutant": "stryker run",
"release": "npm run build && np",
"debug": "TS_NODE_FILES=true node --inspect -r ts-node/register ./src/index.ts",
"prepare": "husky install",
"format": "prettier --write ."
},
"dependencies": {
"ansi-escapes": "^6.2.1",
"colors": "1.4.0",
"get-folder-size": "^4.0.0",
"node-emoji": "^2.1.3",
"open-file-explorer": "^1.0.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/jest-runner": "^8.2.6",
"@types/colors": "^1.2.1",
"@types/gulp": "^4.0.17",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"commitlint": "^19.2.2",
"del": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"gulp": "^5.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"np": "^10.0.3",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"stryker-cli": "^1.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.0",
"typescript": "^5.4.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write"
]
},
"ethereum": "0x7668e86c8bdb52034606db5aa0d2d4d73a0d4259"
}