forked from romainberger/webpack-rtl-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "webpack-rtl-plugin",
"version": "1.4.2",
"description": "Webpack plugin to produce a rtl css bundle",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf test/dist*",
"build": "rm -rf lib && babel src --out-dir lib",
"test": "npm run clean && npm run build && mocha --compilers js:babel-register test/*.js",
"prepublish": "npm run build"
},
"author": "Romain Berger <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/romainberger/webpack-rtl-plugin"
},
"bugs": {
"url": "https://github.com/romainberger/webpack-rtl-plugin"
},
"homepage": "https://github.com/romainberger/webpack-rtl-plugin",
"keywords": [
"webpack",
"css",
"rtl"
],
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.4.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
},
"dependencies": {
"@romainberger/css-diff": "^1.0.3",
"async": "^2.0.0-rc.6",
"cssnano": "^3.7.1",
"postcss": "^5.0.21",
"rtlcss": "^2.0.4",
"webpack-sources": "^0.1.2"
}
}