forked from bootstarted/css-split-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.48 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.48 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
{
"name": "css-split-webpack-plugin",
"version": "0.2.6",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"license": "CC0-1.0",
"repository": "metalabdesign/css-split-webpack-plugin",
"main": "dist/index.js",
"keywords": [
"webpack-plugin",
"postcss"
],
"scripts": {
"prepublish": "./node_modules/.bin/babel -s inline -d ./dist ./src --source-maps true",
"test": "npm run lint && npm run spec",
"lint": "eslint .",
"spec": "cross-env NODE_ENV=test ./node_modules/.bin/_mocha --timeout 5000 -r adana-dump --compilers js:babel-core/register -R spec --recursive test/spec/**/*.spec.js"
},
"devDependencies": {
"adana-cli": "^0.1.1",
"adana-dump": "^0.1.0",
"adana-format-lcov": "^0.1.1",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-adana": "^0.5.10",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"chai": "^3.5.0",
"cross-env": "^6.0.3",
"css-loader": "^6.2.0",
"eslint": "^4.6.0",
"eslint-config-metalab": "^7.0.1",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"memory-fs": "^0.3.0",
"mini-css-extract-plugin": "^2.2.0",
"mocha": "^2.4.5",
"webpack": "^5.50.0"
},
"dependencies": {
"loader-utils": "^1.1.0",
"postcss": "^6.0.14",
"webpack-sources": "^3.2.0"
},
"peerDependencies": {
"webpack": ">=5"
}
}