forked from kessler/license-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 879 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
{
"name": "license-report",
"version": "3.0.0",
"description": "creates a short report about project's dependencies (license, url etc)",
"main": "index.js",
"scripts": {
"test": "mocha -R spec"
},
"bin": {
"license-report": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ironSource/license-report"
},
"author": "Yaniv Kessler",
"license": "MIT",
"bugs": {
"url": "https://github.com/ironSource/license-report/issues"
},
"homepage": "https://github.com/ironSource/license-report",
"dependencies": {
"async": "^0.9.0",
"debug": "^3.2.6",
"lodash": "^4.17.11",
"rc": "^1.2.8",
"request": "^2.88.0",
"semver": "^5.4.1",
"stubborn": "^1.2.5",
"text-table": "^0.2.0",
"visit-values": "^1.0.1"
},
"devDependencies": {
"@kessler/exponential-backoff": "^2.0.0"
}
}