-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.19 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
{
"name": "license-ls",
"version": "1.5.0",
"description": "Get a list of licenses for any installed project dependencies",
"engines": {
"node": ">= 8.0",
"npm": ">= 5.0.0"
},
"main": "lib.js",
"bin": "cli.js",
"scripts": {
"prepublishOnly": "npm test",
"test": "nyc --reporter=lcov --reporter=text-summary ava"
},
"repository": "https://github.com/morficus/license-ls.git",
"homapge": "https://github.com/morficus/license-ls",
"keywords": [
"license",
"licenses",
"ls",
"list",
"npm-ls",
"package",
"report",
"reporter",
"spdx"
],
"author": "Maurice Williams <https://github.com/morficus>",
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.1",
"debug": "^4.1.1",
"glob": "^7.1.6",
"json2csv": "^4.5.4",
"jstoxml": "^1.6.0",
"lodash": "^4.17.15",
"ora": "^4.0.3",
"read-package-tree": "^5.3.1",
"spdx-expression-parse": "^3.0.0",
"spdx-license-list": "^6.1.0",
"table": "^5.4.6",
"yargs": "^15.1.0"
},
"devDependencies": {
"ava": "^3.3.0",
"nyc": "^15.0.0"
},
"ava": {
"timeout": "30s",
"concurrency": 5,
"files": [
"tests/**/*.test.js"
]
}
}