-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "react-decide",
"version": "0.0.0-development",
"description": "React Component to make the Conditional Render look Elegant",
"main": "dist/index.js",
"scripts": {
"test": "jest --config jest.config.js --no-cache",
"build": "rollup -c",
"build:watch": "rollup -c --watch",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/inf3cti0n95/react-decide.git"
},
"keywords": [
"react",
"if-else",
"condition",
"conditional",
"render",
"decide"
],
"author": "Viraj Trivedi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inf3cti0n95/react-decide/issues"
},
"homepage": "https://github.com/inf3cti0n95/react-decide#readme",
"peerDependencies": {
"react": "^16.4.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.1.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.1",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-includepaths": "^0.2.2",
"rollup-plugin-node-resolve": "^3.3.0",
"semantic-release": "^15.5.4",
"travis-deploy-once": "^5.0.0"
},
"dependencies": {
"lodash.isfunction": "^3.0.9",
"prop-types": "^15.6.1"
}
}