-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "amd-webpack-plugin",
"version": "1.0.20",
"license": "MIT",
"description": "make split chunks to be AMD modules",
"author": "somewind <[email protected]> (https://github.com/somewind)",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"commitizen": "^3.1.2",
"conventional-changelog-cli": "^2.0.23",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"webpack": "^4.26.1"
},
"peerDependencies": {
"webpack": "^4.26.1",
"webpack-sources": "^1.3.0"
},
"keywords": [
"webpack",
"plugin",
"amd",
"amd-webpack-plugin",
"requirejs"
],
"bugs": "https://github.com/somewind/amd-webpack-plugin/issues",
"homepage": "https://github.com/somewind/amd-webpack-plugin",
"repository": "https://github.com/somewind/amd-webpack-plugin.git",
"engines": {
"node": ">=6.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}