forked from qubitdigital/qubit-sdk-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "qubit-sdk-react-native",
"version": "1.0.3",
"description": "React Native bridge for using native Qubit SDK libraries on iOS and Android",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "yarn build-prod",
"build": "tsc",
"build-prod": "rm -rf dist && yarn build && yarn docs",
"docs": "documentation readme dist/** --section=\"API documentation\"",
"precommit": "yarn build",
"clean": "watchman watch-del-all && rm -rf package-lock.json && rm -rf node_modules && rm -rf $TMPDIR/metro-* && rm -rf $TMPDIR/haste-map-* && yarn"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:qubitdigital/qubit-sdk-react-native.git"
},
"keywords": [
"react",
"native",
"qubit",
"sdk",
"analytics",
"tracking",
"native",
"bridge",
"events",
"screen",
"hits",
"react-native",
"ios",
"android"
],
"devDependencies": {
"@types/react": "16.9.11",
"@types/react-native": "0.60.22",
"documentation": "^12.1.4",
"react-native": ">=0.58.0",
"typescript": "^2.5.2"
}
}