-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 823 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 823 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "module-to-cdn",
"version": "3.1.2",
"description": "Get cdn config from npm module name",
"license": "MIT",
"repository": "mastilver/module-to-cdn",
"author": {
"name": "Thomas Sileghem",
"email": "th.sileghem@gmail.com",
"url": "mastilver.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"modules.json"
],
"keywords": [
""
],
"dependencies": {
"semver": "^6.0.0"
},
"devDependencies": {
"ava": "^1.4.1",
"axios": "^0.18.0",
"execa": "^1.0.0",
"xo": "^0.24.0"
},
"xo": {
"esnext": true,
"space": 4,
"ignores": [
"**/coverage/**"
],
"rules": {
"ava/no-ignored-test-files": "off",
"eqeqeq": "off",
"no-eq-null": "off"
}
}
}