forked from teslamotors/react-native-camera-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.79 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
{
"name": "react-native-camera-kit",
"repository": {
"type": "git",
"url": "https://github.com/teslamotors/react-native-camera-kit.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "13.0.0",
"description": "A high performance, fully featured, rock solid camera library for React Native applications",
"nativePackage": true,
"scripts": {
"build": "tsc --project tsconfig.json",
"clean": "rm -rf dist/",
"test": "jest",
"lint": "yarn eslint -c .eslintrc.js",
"release": "yarn clean && yarn build && yarn publish --verbose",
"release:beta": "yarn clean && yarn build && yarn publish --tag beta --verbose",
"release:local": "yarn clean && yarn build && tmp=$(mktemp) && yarn pack --filename $tmp.tar.gz && open -R $tmp.tar.gz",
"start": "watchman watch-del-all && node node_modules/react-native/local-cli/cli.js start",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"main": "dist/index.js",
"module": "dist/index.js",
"source": "./src/",
"dependencies": {
"lodash": "^4.14.2"
},
"license": "MIT",
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.165",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"babel-jest": "22.4.1",
"eslint": "^7.11.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.0.1",
"metro-react-native-babel-preset": "0.51.0",
"pod-install": "^0.1.0",
"prettier": "^2.1.2",
"react": "16.11.0",
"react-native": "0.62.3",
"react-test-renderer": "16.6.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}