-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 4 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "license-badger",
"version": "0.21.1",
"description": "Builds a badge indicating your project's license(s) and those of its dependencies.",
"main": "src/index.js",
"type": "module",
"bin": {
"license-badger": "./bin/index.js",
"get-license-type": "./bin/get-license-type.js",
"satisfies": "./bin/satisfies.js"
},
"scripts": {
"prepublishOnly": "npm run license-badges",
"license-badge": "./bin/index.js --corrections --uncategorizedLicenseTemplate \"\\${license} (\\${name} (\\${version}))\" --filteredTypes=nonempty --textTemplate \"License types\n(project, deps, and bundled devDeps)\" --packageJson --production badges/licenses-badge.svg",
"license-badge-dev": "./bin/index.js --corrections --filteredTypes=nonempty --textTemplate \"License types\n(all devDeps)\" --allDevelopment badges/licenses-badge-dev.svg",
"license-badges": "npm run license-badge && npm run license-badge-dev",
"get-license-type": "./bin/get-license-type.js",
"satisfies": "./bin/satisfies.js",
"help": "./bin/index.js -h",
"bin": "./bin/index.js",
"license-badger": "./bin/index.js -l test/fixtures/licenseInfo.json test.svg",
"build-cli": "clp -c src/optionDefinitions.js cli.svg",
"coverage-badge": "coveradge badges/coverage-badge.svg",
"eslint": "eslint --ext=js,md,html .",
"lint": "npm run eslint",
"mocha": "mocha --require chai/register-expect.js test/** --reporter-options configFile=mocha-multi-reporters.json",
"c8": "rm -rf node_modules/.cache && c8 --all npm run mocha && npm run coverage-badge",
"test": "npm run eslint && npm run c8"
},
"c8": {
"reporter": [
"html",
"json-summary",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/brettz9/license-badger.git"
},
"keywords": [],
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/brettz9/license-badger/issues"
},
"homepage": "https://github.com/brettz9/license-badger#readme",
"devDependencies": {
"@brettz9/eslint-plugin": "^1.0.4",
"@brettz9/license-missing": "https://github.com/brettz9/license-missing",
"@brettz9/license-modifyprotective": "https://github.com/brettz9/license-modifyprotective",
"@brettz9/license-seelicensein": "https://github.com/brettz9/license-seelicensein",
"@brettz9/license-uncategorized": "https://github.com/brettz9/license-uncategorized",
"@brettz9/license-unlicensed": "https://github.com/brettz9/license-unlicensed",
"@brettz9/license-useandmodifyprotective": "https://github.com/brettz9/license-useandmodifyprotective",
"@brettz9/license-useprotective": "https://github.com/brettz9/license-useprotective",
"c8": "^10.1.2",
"chai": "^5.1.1",
"command-line-publish": "^1.1.0",
"coveradge": "^0.8.2",
"eslint": "^8.53.0",
"eslint-config-ash-nazg": "^35.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-array-func": "^4.0.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^49.0.0",
"mocha": "^10.4.0",
"mocha-badge-generator": "^0.11.0",
"mocha-multi-reporters": "^1.5.1"
},
"dependencies": {
"@rpl/badge-up": "^3.0.0",
"command-line-basics": "^2.0.1",
"es6-template-strings": "^2.0.1",
"js-yaml": "^4.1.0",
"license-types": "^3.1.0",
"licensee": "^10.0.0",
"spdx-correct": "^3.2.0",
"spdx-expression-parse": "^4.0.0",
"spdx-satisfies": "^5.0.1"
}
}