forked from postcss/postcss-custom-properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "postcss-custom-properties",
"version": "7.0.0",
"description": "PostCSS plugin to polyfill W3C CSS Custom Properties for cascading variables",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"custom-properties",
"variables",
"vars"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/postcss/postcss-custom-properties.git",
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"balanced-match": "^1.0.0",
"postcss": "^6.0.18"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"eslint": "^4.17.0",
"npmpub": "^3.1.0",
"tape": "^4.8.0"
},
"scripts": {
"lint": "eslint *.js index.js ./test/",
"tape": "tape -r babel-register test/*.js",
"test": "npm run lint && npm run babelify && npm run tape",
"babelify": "babel index.js --out-dir dist",
"prepublish": "npm run babelify",
"release": "npmpub"
}
}