-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.49 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.49 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
{
"name": "webpack-config-postcss",
"version": "0.3.0",
"author": "Izaak Schroeder <izaak.schroeder@gmail.com>",
"repository": "izaakschroeder/webpack-config-metalab",
"license": "CC0-1.0",
"main": "dist/postcss.webpack.config.js",
"scripts": {
"prepublish": "./node_modules/.bin/babel -s -d dist src",
"lint": "./node_modules/.bin/eslint .",
"smoke:web": "WEBPACK_TARGET=web ./node_modules/.bin/webpack --config ./example/webpack.config.js",
"smoke:node": "WEBPACK_TARGET=node ./node_modules/.bin/webpack --config ./example/webpack.config.js",
"smoke": "npm run smoke:web && npm run smoke:node",
"test": "npm run lint && npm run smoke"
},
"dependencies": {
"autoprefixer": "^6.5.0",
"css-js-loader": "^0.2.2",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "izaakschroeder/extract-text-webpack-plugin#pass-proper-loader-options",
"lodash": "^4.16.4",
"postcss-import": "8.1.0",
"postcss-loader": "postcss/postcss-loader",
"postcss-require": "^0.1.0",
"style-loader": "^0.13.1",
"webpack-partial": "^2.0.0"
},
"peerDependencies": {
"postcss": ">=5.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-metalab": "^0.2.0",
"eslint": "^1.10.3",
"eslint-config-metalab": "^2.0.0-beta.1",
"eslint-plugin-filenames": "^0.2.0",
"eslint-plugin-import": "^0.12.1",
"eslint-plugin-react": "^3.16.0",
"postcss": "^5.2.4",
"reset-css": "^2.2.0",
"webpack": "^2.1.0-beta.25"
}
}