forked from flexn-io/renative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·124 lines (124 loc) · 4.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "renative-wrapper",
"version": "0.31.2",
"currentRelease": "0.31",
"description": "🚀🚀🚀 Build universal cross-platform apps with React Native. Includes latest `iOS`, `tvOS`, `Android`, `Android TV`, `Android Wear`, `Web`, `Tizen TV`, `Tizen Watch`, `Tizen Mobile`, `LG webOS`, `macOS/OSX`, `Windows`, `KaiOS`, `FirefoxOS`, `Firefox TV` and `Chromecast` platforms",
"keywords": [
"android tv",
"android wear",
"apple tv",
"boilerplate",
"cocoapods",
"cross-platform",
"desktop",
"electron",
"firefox tv",
"firefoxox",
"kaios",
"kit",
"kotlin",
"lg",
"macos",
"multiplatform",
"native",
"osx",
"react",
"react-native",
"smart tv",
"starter",
"swift",
"template",
"tizen",
"tizen mobile",
"tizen watch",
"tvos",
"watch",
"web",
"webos",
"windows"
],
"homepage": "https://github.com/pavjacko/renative#readme",
"bugs": {
"url": "https://github.com/pavjacko/renative/issues"
},
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Pavel Jacko",
"url": "https://github.com/pavjacko"
},
"contributors": [
"Aurimas Mickys <https://github.com/aurimas535>",
"Daniel Marino Ruiz <https://github.com/CHaNGeTe>",
"David Rielo <https://github.com/davidrielo>",
"Mihai Blaga <https://github.com/mihaiblaga89>",
"Sander Looijenga <https://github.com/sanderlooijenga>"
],
"repository": {
"type": "git",
"url": "git://github.com/pavjacko/renative.git"
},
"scripts": {
"bootstrap": "yarn run link:rnv && yarn run link:rnv-builder && npx lerna bootstrap && yarn build",
"bootstrap-clean": "rm -rf ./node_modules; npx lerna clean --yes && yarn bootstrap",
"build": "lerna run --parallel --concurrency 1 build",
"build:clean": "lerna run --parallel --concurrency 1 build:clean",
"link:rnv": "cd packages/rnv && (yarn unlink || true) && yarn link",
"link:rnv-builder": "cd packages/rnv-builder && (yarn unlink || true) && yarn link",
"postinstall": "lerna link --force-local && npx jetify",
"lint": "npx eslint ./packages/rnv",
"test:rnv": "lerna run test:local --stream --scope rnv",
"test:rnv:unit": "lerna run test --stream --scope rnv",
"ut": "lerna run test --stream --scope rnv",
"watch": "lerna run --parallel --concurrency 2 watch",
"version": "cd website && yarn run version",
"docs": "cd website && yarn start",
"deploy-prepare": "cd packages/app && yarn deploy-prepare",
"git-commit": "cd packages/app && rnv hooks run -x gitCommit",
"git-tag": "cd packages/app && rnv hooks run -x gitTag",
"git-commit-tag": "cd packages/app && rnv hooks run -x gitCommitAndTag",
"deploy-website": "cd website && GIT_USER=pavjacko CURRENT_BRANCH=master USE_SSH=true yarn publish-gh-pages",
"deploy-all": "npm run test:rnv:unit && npm run deploy-prepare && npm run deploy-website && npm run git-commit-tag",
"deploy:feat": "npm run test:rnv:unit && npm run deploy-prepare && npm run git-commit && npx lerna publish from-package --dist-tag feat --yes",
"deploy:alpha": "npm run deploy-all && npx lerna publish from-package --dist-tag alpha --yes && git push origin HEAD",
"deploy:prod": "npm run deploy-all && npx lerna publish from-package --yes && git push origin HEAD"
},
"devDependencies": {
"babel-eslint": "8.2.6",
"babel-jest": "24.9.0",
"lerna": "3.16.4",
"eslint": "6.2.2",
"eslint-plugin-detox": "1.0.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-mocha": "6.3.0",
"eslint-plugin-react": "7.10.0",
"eslint-plugin-react-hooks": "2.5.0",
"husky": "4.2.5",
"jsdoc-to-markdown": "6.0.1"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=4.0.0"
},
"private": true,
"title": "ReNative",
"codename": "Midnight Rambler",
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test:rnv:unit"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
}
}