forked from marcello3d/node-licensecheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 999 Bytes
/
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
{
"name": "licensecheck",
"version": "1.3.0",
"description": "A quick way to see the licenses of modules you depend on—recursively.",
"homepage": "https://github.com/marcello3d/node-licensecheck",
"repository": {
"type": "git",
"url": "git://github.com/marcello3d/node-licensecheck.git"
},
"author": {
"name": "Marcello Bastéa-Forte",
"email": "marcello@cellosoft.com",
"url": "http://marcello.cellosoft.com/"
},
"dependencies": {
"colors": "1.1.2",
"markdown": "0.5.0",
"spdx-license-list": "2.1.0",
"strip-json-comments": "2.0.1",
"treeify": "1.0.1"
},
"devDependencies": {
"eslint": "3.12.2",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"mocha": "3.2.0"
},
"scripts": {
"lint": "eslint .",
"test-dev": "mocha --watch",
"test": "npm run lint && mocha"
},
"license": "zlib",
"bin": {
"licensecheck": "./bin/licensecheck"
}
}