forked from MadLittleMods/postcss-css-variables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 858 Bytes
/
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
{
"name": "postcss-css-variables",
"version": "0.6.0",
"description": "PostCSS plugin to transform CSS Custom Properties(CSS variables) syntax into a static representation",
"keywords": [
"postcss",
"css",
"postcss-plugin"
],
"author": "Eric Eastwood <[email protected]> (http://ericeastwood.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MadLittleMods/postcss-css-variables.git"
},
"dependencies": {
"escape-string-regexp": "^1.0.3",
"extend": "^2.0.1",
"postcss": "^5.0.5"
},
"devDependencies": {
"bluebird": "^2.9.26",
"chai": "^2.3.0",
"chai-as-promised": "^5.0.0",
"clean-css": "^3.2.10",
"gulp": "^3.8.11",
"gulp-eslint": "^0.12.0",
"gulp-mocha": "^2.1.0",
"mocha": "^2.2.5"
},
"scripts": {
"test": "gulp"
}
}