-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
{
"name": "react-render-fam",
"version": "1.0.11",
"description": "Lit components for conditional rendering, Fam",
"author": "Daniel Del Core",
"repository": "github:danieldelcore/react-render-fam",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && webpack",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint index.js src",
"preversion": "yarn lint && yarn test",
"version": "yarn build",
"postversion": "git push && git push --tags"
},
"main": "./dist/index.js",
"typings": "./index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"component",
"components",
"conditional",
"helper",
"helpers",
"if",
"omit",
"react",
"render",
"sort",
"switch",
"util",
"utilities",
"utils"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.4.3",
"react": "^16.3.2",
"react-test-renderer": "^16.3.2",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"prop-types": "^15.6.1"
}
}