-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "dmn",
"description": "Node package dependency cleaner and .npmignore file generator.",
"version": "3.0.1",
"author": "Ivan Nikulin <[email protected]> (https://github.com/inikulin)",
"homepage": "http://inikulin.github.io/dmn/",
"keywords": [
"cleaner",
"clutter",
"dependencies",
"npm",
"npmignore",
".npmignore",
"generator"
],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/inikulin/dmn/master/LICENSE"
}
],
"bin": {
"dmn": "./bin/cli.js"
},
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/inikulin/dmn.git"
},
"scripts": {
"test": "rm -rf test/fixtures/node_modules test/tmp && c8 node test/run_tests.js"
},
"dependencies": {
"char-spinner": "1.0.1",
"co": "^4.6.0",
"fast-glob": "^3.2.8",
"fs-extra": "^11.2.0",
"nopt": "^7.2.1",
"read": "^3.0.1"
},
"devDependencies": {
"c8": "^10.1.2",
"mocha": "^10.4.0",
"should": "^13.2.3"
}
}