-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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": "fela-components",
"version": "2.0.0",
"description": "React styling using components",
"main": "cjs/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "babel ./lib --out-dir ./cjs",
"dev": "babel ./lib --out-dir ./cjs --watch",
"lint": "eslint lib",
"format": "prettier-eslint './lib/**/*.js' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arturmuller/fela-components.git"
},
"author": "Artur Muller <me@arturmuller.com> (http://arturmuller.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arturmuller/fela-components/issues"
},
"homepage": "https://github.com/arturmuller/fela-components#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-lusk": "^0.0.2",
"eslint": "^3.19.0",
"eslint-config-lusk": "^1.0.3",
"prettier-eslint-cli": "^3.4.3"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0",
"fela": "^6.0.0"
},
"dependencies": {
"fela-dom": "^6.0.0",
"prop-types": "^15.6.0",
"ramda": "^0.24.1"
}
}