-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.93 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
{
"name": "sentiance-react-native",
"version": "6.9.0",
"description": "React Native libraries for the Sentiance SDK",
"scripts": {
"docs": "npx jsdoc2md index.d.ts > types.md",
"test": "jest --verbose",
"androidTest": "cd ./packages && ./gradlew test -PtestEnv=true --stacktrace",
"fetch:npm_tag": "node ./scripts/determine-version-tag.js",
"sync:package_versions": "node ./scripts/sync-package-versions.js",
"lint": "npm run lint --workspaces",
"prepublishLocal": "npm run sync:package_versions",
"publishLocal": "npm publish --workspaces --registry http://localhost:4873/ --tag $(npm run fetch:npm_tag --silent)",
"publishLocal:overwrite": "npm unpublish --force --workspaces --registry http://localhost:4873/ && npm publish --workspaces --registry http://localhost:4873/ --tag $(npm run fetch:npm_tag --silent)",
"new-sdk-module": "./scripts/new-sdk-module/run.sh"
},
"workspaces": [
"packages/core",
"packages/crash-detection",
"packages/user-context",
"packages/legacy",
"packages/driving-insights",
"packages/event-timeline",
"packages/smart-geofences"
],
"author": "",
"license": "",
"homepage": "https://github.com/sentiance/react-native-sentiance#readme",
"bugs": "https://github.com/sentiance/react-native-sentiance/issues",
"repository": "github:sentiance/react-native-sentiance",
"devDependencies": {
"@babel/core": "7.18.0",
"@babel/preset-env": "^7.22.4",
"@babel/runtime": "^7.22.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"babel-jest": "^29.5.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.6.3",
"jest": "^29.5.0",
"jsdoc": "^3.6.10",
"jsdoc-to-markdown": "^7.1.1",
"metro-react-native-babel-preset": "^0.76.6",
"prettier": "^2.6.2",
"prettier-plugin-jsdoc": "^0.3.38",
"react-native": "0.61.5",
"typescript": "^4.5.5",
"verdaccio": "^5.10.2"
}
}