-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.04 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
{
"name": "spdx-license-list",
"version": "6.9.0",
"description": "List of SPDX licenses",
"license": "CC0-1.0",
"repository": "sindresorhus/spdx-license-list",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"sideEffects": false,
"engines": {
"node": ">=8"
},
"scripts": {
"//test": "xo && ava && tsd",
"test": "xo && ava",
"make": "node make.js"
},
"files": [
"index.js",
"index.d.ts",
"full.js",
"full.d.ts",
"simple.js",
"simple.d.ts",
"spdx.json",
"spdx-full.json",
"spdx-simple.json",
"licenses"
],
"keywords": [
"spdx",
"license",
"licenses",
"mit",
"bsd",
"list",
"open source",
"software",
"id",
"ids",
"identifiers",
"set"
],
"devDependencies": {
"ava": "^1.4.1",
"got": "^9.6.0",
"hard-rejection": "^2.0.0",
"ora": "^3.2.0",
"p-map": "^2.0.0",
"tsd": "^0.13.1",
"xo": "^0.24.0"
},
"xo": {
"rules": {
"import/extensions": "off"
}
}
}