-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "@axew/rc-if",
"version": "1.1.0",
"main": "lib/index.js",
"umd:main": "dist/index.js",
"module": "es/index.js",
"license": "MIT",
"homepage": "https://github.com/daief/rc-if",
"repository": {
"type": "git",
"url": "https://github.com/daief/rc-if"
},
"author": "daief <https://github.com/daief>",
"scripts": {
"build": "rollup -c",
"prebuild": "rimraf dist es lib types",
"test": "jest",
"prepublishOnly": "yarn test && yarn build"
},
"peerDependencies": {
"react": ">= 16.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"@types/react-test-renderer": "^16.8.2",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.16.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
},
"files": [
"lib",
"es",
"dist"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"description": "A react component for write if-else in render",
"keywords": [
"react",
"rc-if",
"react-if",
"if-else",
"components"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}