forked from mastilver/dynamic-cdn-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dynamic-cdn-webpack-plugin",
"version": "4.0.0",
"description": "Dynamically get your dependencies from a cdn rather than bundling them in your app",
"license": "MIT",
"repository": "mastilver/dynamic-cdn-webpack-plugin",
"author": {
"name": "Thomas Sileghem",
"email": "[email protected]",
"url": "mastilver.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && nyc ava",
"prepublishOnly": "npm run build",
"version": "all-contributors generate",
"build": "babel src --out-dir lib",
"add-contributor": "all-contributors add"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"webpack",
"cdn",
"unpkg.com",
"html-webpack-plugin",
"webpack-manifest-plugin",
"html",
"script",
"assets",
"externals"
],
"dependencies": {
"html-webpack-include-assets-plugin": "^1.0.4",
"read-pkg-up": "^4.0.0",
"resolve-pkg": "^1.0.0"
},
"peerDependencies": {
"module-to-cdn": "^3.1.1",
"webpack": "4"
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.4",
"html-webpack-plugin": "^3.0.4",
"module-to-cdn": "^3.1.1",
"mz": "^2.6.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-manifest-plugin": "2.0.0-rc.2",
"xo": "^0.22.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 8
}
}
]
]
},
"xo": {
"esnext": true,
"space": 4,
"rules": {
"eqeqeq": "off",
"no-eq-null": "off"
},
"ignores": [
"test/fixtures/**/*.js"
]
},
"ava": {
"files": [
"test/**/*.js",
"!test/fixtures/output/**/*"
],
"babel": "inherit",
"require": [
"babel-core/register"
]
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}