-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
37 lines (37 loc) · 916 Bytes
/
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
{
"name": "webpack-emit-all-plugin",
"version": "2.0.1",
"description": "webpack, without the `pack`",
"main": "index.js",
"engines": {
"node": ">=7",
"npm": "*"
},
"dependencies": {},
"devDependencies": {
"prettier": "^1.5.3",
"prettier-check": "^1.0.0"
},
"peerDependencies": {
"webpack": ">=4"
},
"scripts": {
"format": "prettier --single-quote --tab-width 4 --write *.js",
"format:check": "prettier-check --single-quote --tab-width 4 --write *.js",
"test": "npm run format:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrewML/webpack-emit-all-plugin.git"
},
"keywords": [
"webpack",
"emit"
],
"author": "Andrew Levine",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrewML/webpack-emit-all-plugin/issues"
},
"homepage": "https://github.com/DrewML/webpack-emit-all-plugin#readme"
}