-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "kilvin",
"description": "Primitive React Components using Fela",
"repository": "https://github.com/robinweser/kilvin/",
"author": "Robin Weser",
"license": "MIT",
"version": "4.1.0",
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"lib/**",
"es/**"
],
"browserslist": [
"IE >= 11",
"Firefox >= 60",
"Safari >= 11.1",
"Chrome >= 66",
"ChromeAndroid >= 66",
"iOS >= 11.3",
"Edge >= 15"
],
"keywords": [
"fela",
"react",
"react-component",
"components",
"primitives",
"cssinjs"
],
"scripts": {
"clean": "rimraf lib es coverage",
"docs": "gitbook install && gitbook build && gh-pages -d _book",
"build": "yarn build:es && yarn build:lib",
"build:es": "babel src --out-dir es --ignore \"src/__tests__\" --copy-files",
"build:lib": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore \"src/__tests__\" --copy-files",
"release": "yarn build && npm publish && yarn docs"
},
"dependencies": {
"prop-types": "^15.8.1"
},
"peerDependecies": {
"react-fela": "*",
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"cross-env": "^6.0.3",
"gh-pages": "^2.2.0",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-anker-enable": "0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-prism": "^2.4.0",
"rimraf": "^3.0.0"
}
}