-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@onebeyond/license-checker",
"version": "2.0.1",
"description": "Audit your NPM dependencies and reject any forbidden license.",
"main": "cli.js",
"bin": {
"license-checker": "./cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/onebeyond/license-checker.git"
},
"keywords": [
"license"
],
"scripts": {
"prepare": "./node_modules/.bin/is-ci || husky install",
"lint": "eslint *.js .",
"lint:fix": "eslint --fix --ext .js .",
"test": "jest",
"coverage": "jest --coverage",
"ncu": "npx npm-check-updates"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/onebeyond/license-checker/issues"
},
"homepage": "https://github.com/onebeyond/license-checker#readme",
"dependencies": {
"chalk": "4.1.2",
"is-ci": "3.0.1",
"license-checker": "25.0.1",
"lodash": "4.17.21",
"spdx-expression-validate": "2.0.0",
"spdx-license-ids": "3.0.13",
"spdx-satisfies": "5.0.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@commitlint/cli": "17.6.7",
"@commitlint/config-conventional": "17.6.7",
"eslint": "8.45.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.6.1"
}
}