-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 884 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
26
27
28
29
30
31
32
33
34
{
"name": "spdx",
"description": "SPDX License Expression Syntax parser",
"version": "0.5.2",
"author": "Kyle E. Mitchell <kyle@kemitchell.com> (http://kemitchell.com)",
"bugs": "https://github.com/kemitchell/spdx.js/issues",
"dependencies": {
"spdx-exceptions": "^1.0.0",
"spdx-license-ids": "^1.0.0"
},
"devDependencies": {
"defence-cli": "^1.0.1",
"jison": "^0.4.15",
"replace-require-self": "^1.0.0"
},
"homepage": "https://github.com/kemitchell/spdx.js",
"keywords": [
"SPDX",
"law",
"legal",
"license",
"metadata",
"package",
"package.json",
"standards"
],
"license": "MIT",
"repository": "kemitchell/spdx.js",
"scripts": {
"prepublish": "node generate-parser.js > parser.generated.js",
"pretest": "npm run prepublish",
"test": "defence README.md | replace-require-self | node"
}
}