-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.21 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
69
70
71
72
{
"name": "umi-plugin-react-native",
"version": "0.5.0",
"description": "Show React Native Demo with dumi powered by react-native-web",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "del ./dist && tsc",
"prepublishOnly": "yarn build",
"release": "standard-version",
"release:major:pre": "standard-version --release-as major --prerelease rc --skip.changelog=true --skip.tag=true",
"release:major": "standard-version --release-as major",
"release:minor:pre": "standard-version --release-as minor --prerelease rc --skip.changelog=true --skip.tag=true",
"release:minor": "standard-version --release-as minor",
"release:patch:pre": "standard-version --release-as patch --prerelease rc --skip.changelog=true --skip.tag=true",
"release:patch": "standard-version --release-as patch",
"commit": "git cz"
},
"repository": {
"type": "git",
"url": "https://github.com/youngjuning/umi-plugin-react-native"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"umi",
"dumi",
"react-native",
"react-native-web",
"react-native-svg"
],
"authors": [
"youngjuning <[email protected]> (https://youngjuning.js.org)"
],
"license": "MIT",
"bugs": "https://github.com/youngjuning/umi-plugin-react-native/issues",
"homepage": "https://github.com/youngjuning/umi-plugin-react-native#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@types/node": "^14.14.20",
"commitizen": "^4.2.2",
"commitlint-config-cz": "^0.13.2",
"cz-customizable": "^6.3.0",
"del-cli": "^3.0.1",
"husky": "^4.3.7",
"standard-version": "^9.1.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"umi": "^3.3.4"
},
"dependencies": {
"expo-asset": "^8.2.1",
"react-art": "^17.0.1",
"react-modal": "^3.14.3",
"react-native-svg-web": "^1.0.9",
"react-native-web": "^0.14.10",
"react-native-web-linear-gradient": "^1.1.1",
"react-native-web-maps": "^0.3.0",
"rmc-picker": "^5.0.10"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}