-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "npm-deps-info",
"version": "0.1.0",
"description": "CLI utility for generating report about dependencies that are used in your project",
"author": "Alexander Suevalov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/suevalov/npm-deps-info",
"changelog": "https://github.com/suevalov/npm-deps-info/blob/master/CHANGELOG.md",
"bugs": {
"url": "https://github.com/suevalov/npm-deps-info/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suevalov/npm-deps-info.git"
},
"main": "./lib/bin/cli.js",
"bin": "./lib/bin/cli.js",
"engines": {
"node": ">=0.10"
},
"preferGlobal": true,
"dependencies": {
"babel-runtime": "5.8.29",
"chalk": "1.1.3",
"json2xls": "0.1.1",
"lodash": "3.10.1",
"ora": "0.2.1",
"package-info": "2.2.3",
"yargs": "4.4.0"
},
"devDependencies": {
"babel-core": "5.8.33",
"babel-eslint": "6.0.2",
"del": "2.2.0",
"eslint": "2.7.0",
"gulp": "3.9.1",
"gulp-babel": "5.3.0",
"watch": "0.17.1"
},
"files": [
"lib",
"src",
"db"
],
"directories": {
"lib": "./lib"
},
"keywords": [
"npm",
"dependencies",
"report"
],
"scripts": {
"start": "node ./lib/bin/cli.js",
"lint": "./node_modules/.bin/eslint ./",
"prepublish": "./node_modules/.bin/gulp build",
"build": "./node_modules/.bin/gulp build",
"watch": "./node_modules/.bin/watch 'npm run build' src/"
}
}