-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "flush-css-chunks-webpack-plugin",
"version": "0.2.0",
"description": "Generates CSS asset map from chunks",
"main": "lib/flush-css-chunks-webpack-plugin.js",
"files": [
"*.md",
"src",
"lib"
],
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"clean": "rimraf lib",
"build": "npm run clean && babel ./src -d lib",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"webpack",
"plugin",
"css-chunks"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mario-jerkovic/flush-css-chunks-webpack-plugin.git"
},
"author": "Mario Jerkovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/mario-jerkovic/flush-css-chunks-webpack-plugin/issues"
},
"homepage": "https://github.com/mario-jerkovic/flush-css-chunks-webpack-plugin#readme",
"engines": {
"node": ">=4.0.0"
},
"peerDependencies": {
"webpack": "*"
},
"dependencies": {
"webpack-sources": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"eslint": "^4.4.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"rimraf": "^2.6.1",
"webpack": "^3.4.1"
}
}