-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 806 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 806 Bytes
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
{
"name": "spdx-id-to-url",
"version": "1.0.0",
"description": "given an SPDX license ID, return a URL for the license",
"author": "Kyle E. Mitchell <kyle@kemitchell.com> (https://kemitchell.com/)",
"repository": "kemitchell/spdx-id-to-url.js",
"license": "BlueOak-1.0.0",
"files": [
"index.js",
"mappings.json"
],
"devDependencies": {
"defence-cli": "^3.0.1",
"replace-require-self": "^1.1.1",
"tape": "^5.7.0"
},
"scripts": {
"build": "./tojson < mappings.txt > mappings.json",
"prepublish": "npm run build",
"pretest": "npm run build",
"test": "npm run test:readme && npm run test:suite",
"test:readme": "defence -i javascript < README.md | replace-require-self | node",
"test:suite": "NODE_TLS_REJECT_UNAUTHORIZED=0 node test.js"
}
}