-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "webpack-blocks-html",
"version": "1.3.1",
"description": "A webpack-block for html-webpack-plugin",
"main": "lib/index.js",
"scripts": {
"build": "babel index.js -d lib",
"test": "jest",
"test-watch": "jest --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecliptic/webpack-blocks-html.git"
},
"author": "Brandon Konkle <brandon@ecliptic.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ecliptic/webpack-blocks-html/issues"
},
"keywords": [
"webpack",
"webpack-blocks",
"html-webpack-plugin"
],
"homepage": "https://github.com/ecliptic/webpack-blocks-html#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-optimize": "^1.0.1",
"eslint": "^3.13.1",
"eslint-config-cleanjs": "^4.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-standard": "^2.0.1"
},
"dependencies": {
"deepmerge": "^1.3.2",
"html-webpack-plugin": "^2.28.0"
}
}