forked from vkalinichev/postcss-rtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "postcss-rtl",
"version": "1.1.4",
"description": "PostCSS plugin for RTL-optimizations",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"postcss plugin",
"rtl",
"ltr",
"right to left",
"left to right"
],
"author": "Vladimir Kalinichev <[email protected]>",
"license": "MIT",
"repository": "https://github.com/vkalinichev/postcss-rtl",
"bugs": {
"url": "https://github.com/vkalinichev/postcss-rtl/issues"
},
"homepage": "https://github.com/vkalinichev/postcss-rtl",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"dependencies": {
"rtlcss": "^2.0.6"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.26.0",
"del": "^2.2.2",
"eslint": "^3.8.1",
"gulp": "^3.9.1",
"gulp-postcss": "^6.2.0",
"gulp-sourcemaps": "^2.2.0",
"postcss": "^5.2.5",
"require-new": "^1.1.0",
"run-sequence": "^1.2.2"
},
"scripts": {
"build": "babel src -d lib",
"prepare": "npm run build && npm test",
"start": "gulp",
"lint": " eslint src/*.js",
"test": "ava",
"test:watch": "ava --watch"
},
"engines": {
"node": ">=0.12"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}