-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 KB
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
{
"name": "fela-react-prop",
"version": "1.0.0",
"description": "fela helper that generates a set of styles and sets the auto-generated className for them as property on a wrapped component",
"main": "build.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codepunkt/fela-react-prop.git"
},
"author": "Christoph Werner <christoph@codepunkt.de>",
"license": "MIT",
"keywords": [
"react",
"component",
"fela",
"css",
"css-in-js"
],
"scripts": {
"build": "babel index.js -o build.js",
"test": "jest --coverage",
"prepublish": "cross-env yarn run build"
},
"dependencies": {
"fela": "^4.3.5",
"react": "^15.5.4",
"react-fela": "^4.3.5"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.16.0",
"coveralls": "^2.11.15",
"cross-env": "^4.0.0",
"enzyme": "^2.8.2",
"jest": "^18.1.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4"
},
"peerDependencies": {}
}