-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "denomo-cli",
"private": false,
"version": "1.0.1",
"description": "Denomo is a CLI utility that deletes nested 'node_modules' directories",
"author": {
"name": "Peter Dyumin",
"url": "https://github.com/peterdee"
},
"main": "build/index.js",
"bin": {
"denomo": "build/index.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "cross-env TESTING=true mocha \"build/tests/*.spec.js\""
},
"homepage": "https://github.com/julyskies/denomo-cli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/julyskies/denomo-cli"
},
"engines": {
"node": ">=14.14.0"
},
"bugs": {
"url": "https://github.com/julyskies/denomo-cli/issues"
},
"keywords": [
"Denomo",
"Node modules",
"Utility"
],
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"mocha": "^9.1.3",
"typescript": "^4.5.4"
}
}