forked from MadLittleMods/postcss-css-variables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 940 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
35
36
37
{
"name": "postcss-css-variables",
"version": "0.8.1",
"description": "PostCSS plugin to transform CSS Custom Properties(CSS variables) syntax into a static representation",
"keywords": [
"postcss",
"css",
"postcss-plugin"
],
"author": "Eric Eastwood <contact@ericeastwood.com> (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": "^3.0.1",
"postcss": "^6.0.8"
},
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"clean-css": "^4.1.7",
"eslint": "^4.4.1",
"eslint-plugin-react": "^7.1.0",
"gulp": "^3.8.11",
"gulp-eslint": "^4.0.0",
"gulp-mocha": "^4.3.1",
"mocha": "^3.5.0"
},
"scripts": {
"test": "gulp",
"lint": "eslint ."
}
}