-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "wasted",
"version": "1.0.9",
"description": "Command line utility to find the largest files in a given directory",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "./node_modules/eslint/bin/eslint.js .",
"start-debug": "DEBUG='wasted*' npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefuhnee/wasted.git"
},
"keywords": [],
"bin": {
"wasted": "bin/wasted.bin.js"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stefuhnee/wasted/issues"
},
"homepage": "https://github.com/stefuhnee/wasted#readme",
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"debug": "^2.3.3"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}