-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "babel-plugin-css-in-js",
"version": "1.5.1",
"description": "A plugin for Babel v6 which transforms inline styles defined in JavaScript modules into class names so they become available to, e.g. the `className` prop of React elements. While transforming, the plugin processes all JavaScript style definitions found and bundles them up into a CSS file, ready to be requested from your web server.",
"main": "lib/index.js",
"keywords": [
"babel-plugin",
"css-in-js",
"stylesheet",
"bundler"
],
"author": "Martin Andert",
"contributors": [
"Stefano J. Attardi"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/martinandert/babel-plugin-css-in-js.git"
},
"bugs": {
"url": "https://github.com/martinandert/babel-plugin-css-in-js/issues"
},
"homepage": "https://github.com/martinandert/babel-plugin-css-in-js#readme",
"engines": {
"node": ">=0.12"
},
"scripts": {
"build": "make fast",
"test": "make test",
"lint": "make lint",
"coverage": "make test-cov && open coverage/lcov-report/index.html"
},
"dependencies": {
"autoprefixer": "^6.1.2",
"babel-generator": "^6.3.15",
"babel-runtime": "^6.3.13",
"clean-css": "^3.4.8",
"foreach": "^2.0.5",
"mkdirp": "^0.5.1",
"object-assign": "^4.0.1",
"postcss": "^5.0.12"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.5.9",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"babylon": "^6.3.15",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"mocha": "^2.3.4"
}
}