-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 947 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
{
"name": "d2l-license-checker",
"version": "4.3.0",
"description": "Simple tool to check licenses of all npm dependencies in a project",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/d2l-license-checker"
},
"scripts": {
"license-check": "node bin/d2l-license-checker",
"lint": "eslint lib/** bin/** test",
"test": "mocha --timeout 120000",
"posttest": "npm run license-check"
},
"bin": {
"d2l-license-checker": "./bin/d2l-license-checker",
"license-checker-ci": "./bin/license-checker-ci"
},
"dependencies": {
"license-checker": "^25.0.1",
"lodash": "^4.17.21",
"semver": "^7.3.8",
"spdx-license-ids": "^3.0.12",
"spdx-satisfies": "^5.0.1",
"yargs": "^17.6.2"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.28.0",
"mocha": "^10.1.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"lint"
]
}