-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 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
42
43
44
45
46
47
48
{
"name": "react-whether",
"version": "1.1.1",
"description": "A react component to perform if/else logic",
"main": "cjs/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"sideEffects": false,
"devDependencies": {
"@types/prop-types": "^15.7.0",
"@types/react": "^16.8.7",
"coveralls": "^3.0.1",
"prop-types": "^15.5.10",
"react": "^16.4.0",
"react-test-renderer": "^16.8.4",
"reskript": "^0.21.0"
},
"peerDependencies": {
"react": ">=15"
},
"scripts": {
"test": "yarn run build && skr test --target=react --coverage",
"build": "skr rollup --clean",
"report-cov": "cat coverage/lcov.info | coveralls",
"lint": "skr lint",
"ci": "yarn test && yarn run build",
"prepublishOnly": "yarn run ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otakustay/react-whether.git"
},
"files": [
"es",
"cjs"
],
"keywords": [
"react",
"if",
"component"
],
"author": "otakustay",
"license": "MIT",
"bugs": {
"url": "https://github.com/otakustay/react-whether/issues"
},
"homepage": "https://github.com/otakustay/react-whether#readme"
}