-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 972 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
{
"name": "babel-plugin-css-to-js",
"version": "0.0.4",
"description": "Babel plugin for running converting css template literals into JS object literals",
"keywords": [
"css",
"babel-plugin"
],
"author": "Jake Coxon <[email protected]>",
"main": "dist/index.js",
"homepage": "https://github.com/jakecoxon/babel-plugin-css-to-js",
"repository": "[email protected]:jakecoxon/babel-plugin-css-to-js.git",
"bugs": "https://github.com/jakecoxon/babel-plugin-css-to-js/issues",
"scripts": {
"prepublish": "babel src -d dist --presets es2015",
"test": "babel-node --presets es2015 src/test/index.js"
},
"dependencies": {
"camelcase": "^5.0.0",
"postcss": "^7.0.14",
"postcss-safe-parser": "^4.0.1"
},
"devDependencies": {
"autoprefixer": "^9.4.7",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"istanbul": "^0.4.5",
"tape": "^4.9.2"
},
"license": "MIT"
}