-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.07 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
{
"name": "conformance",
"version": "1.0.0",
"description": "A module that helps you get insight into compliance with SPDX conformance.",
"main": "index.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "jest --collect-coverage && standard"
},
"keywords": [
"licenses",
"license",
"conformance",
"conform",
"spdx",
"osi",
"Open Source Initiative",
"fsf",
"Free Software Foundation",
"validate"
],
"author": "Tierney Cyren <hello@bnb.im>",
"license": "MIT",
"dependencies": {
"spdx-expression-parse": "^3.0.0"
},
"devDependencies": {
"jest": "^24.8.0",
"standard": "^13.1.0"
},
"standard": {
"ignore": [
"/tests"
]
},
"files": [
"/exports",
"/lib",
"/licenses"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cutenode/conformance.git"
},
"bugs": {
"url": "https://github.com/cutenode/conformance/issues"
},
"homepage": "https://github.com/cutenode/conformance#readme"
}