-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "licenseguard",
"version": "1.0.2",
"description": "Command line tool for running license checks to guard you from using packages with blacklisted licenses. Integrates well into your ci workflow.",
"author": "Softwarepark <office@softwarepark.cc>",
"license": "ISC",
"repository": "Softwarepark/licenseguard",
"main": "index.js",
"bin": "bin/cli.js",
"scripts": {
"test": "nyc mocha --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version"
},
"files": [
"index.js",
"bin/**/*.js",
"lib/**/*.js"
],
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"standard-version": "^7.1.0"
},
"dependencies": {
"chalk": "^3.0.0",
"license-checker": "^25.0.1",
"matcher": "^2.1.0",
"rc": "^1.2.8",
"spdx-expression-parse": "^3.0.0",
"spdx-license-ids": "^3.0.5",
"spdx-satisfies": "^5.0.0",
"wrap-ansi": "^6.2.0",
"xmlbuilder": "^14.0.0"
}
}