forked from MadLittleMods/postcss-css-variables
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 947 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
{
"name": "postcss-css-variables",
"version": "0.9.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": "^3.0.1",
"postcss": "^6.0.8"
},
"devDependencies": {
"bluebird": "^3.5.0",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"cssnano": "^4.0.0",
"eslint": "^4.4.1",
"eslint-plugin-react": "^7.1.0",
"mocha": "^3.5.0",
"postcss-discard-comments": "^4.0.0",
"postcss-normalize-whitespace": "^4.0.0"
},
"scripts": {
"test": "mocha",
"lint": "eslint ."
}
}