-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 902 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
{
"name": "babel-plugin-csjs-postcss",
"version": "0.3.0",
"description": "Babel plugin for running postcss on csjs",
"keywords": [
"csjs",
"babel-plugin"
],
"author": "Ryan Tsao <[email protected]>",
"main": "dist/index.js",
"homepage": "https://github.com/rtsao/babel-plugin-csjs-postcss",
"repository": "[email protected]:rtsao/babel-plugin-csjs-postcss.git",
"bugs": "https://github.com/rtsao/babel-plugin-csjs-postcss/issues",
"scripts": {
"prepublish": "babel src -d dist --presets es2015",
"test": "babel-node --presets es2015 src/test/index.js"
},
"dependencies": {
"postcss": "^5.0.16",
"postcss-safe-parser": "^2.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"istanbul": "^0.4.0",
"tape": "^4.2.0"
},
"license": "MIT"
}