-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
75 lines (75 loc) · 1.75 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
{
"name": "webpack-cdn-plugin",
"version": "3.3.1",
"description": "A webpack plugin that use externals of CDN urls for production and local node_modules for development",
"main": "module.js",
"module": "module.js",
"scripts": {
"lint": "eslint module.js spec/",
"test": "npm run lint && nyc jasmine",
"commitmsg": "validate-commit-msg",
"precommit": "npm test",
"start": "webpack --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shirotech/webpack-cdn-plugin.git"
},
"files": [
"module.js",
"README.md"
],
"keywords": [
"webpack",
"html",
"externals",
"script",
"include",
"assets",
"plugin",
"cdn",
"production",
"development"
],
"author": {
"name": "Van Nguyen",
"email": "[email protected]",
"url": "https://shirotech.com/"
},
"contributors": [
{
"name": "Van Nguyen",
"email": "[email protected]",
"url": "https://shirotech.com/"
}
],
"engines": {
"node": ">=6.9"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shirotech/webpack-cdn-plugin/issues"
},
"homepage": "https://github.com/shirotech/webpack-cdn-plugin",
"devDependencies": {
"archy": "^1.0.0",
"bootstrap-css-only": "^4.4.1",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "^2.20.2",
"html-webpack-plugin": "^4.0.4",
"husky": "^4.2.3",
"jasmine": "^3.5.0",
"jasmine-spec-reporter": "^5.0.1",
"nyc": "^15.0.1",
"validate-commit-msg": "^2.14.0",
"webpack": "4.42.1",
"webpack-cli": "^3.3.4"
},
"peerDependencies": {
"html-webpack-plugin": ">=3"
},
"dependencies": {
"sri-create": "^0.0.3"
}
}