-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) 路 1.85 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) 路 1.85 KB
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
{
"name": "react-native-docusign",
"version": "2.0.0",
"description": "React Native / Expo native module wrapping DocuSign iOS and Android SDKs for in-app captive signing",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"ios",
"android",
"plugin/build",
"expo-module.config.json",
"app.plugin.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc -p plugin/tsconfig.build.json",
"lint": "eslint . --max-warnings 0",
"typecheck:examples": "tsc -p tsconfig.examples.json && node scripts/check-doc-examples.js",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"react-native",
"expo",
"expo-module",
"docusign",
"esignature",
"signing",
"captive-signing",
"ios",
"android"
],
"repository": "https://github.com/IronTony/react-native-docusign",
"bugs": {
"url": "https://github.com/IronTony/react-native-docusign/issues"
},
"author": "IronTony",
"license": "MIT",
"homepage": "https://github.com/IronTony/react-native-docusign",
"devDependencies": {
"@amplitude/analytics-react-native": "^1.8.0",
"@react-native/jest-preset": "^0.85.2",
"@sentry/react-native": "^8.26.0",
"@testing-library/react-native": "^13.3.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.39",
"eslint": "^9.39.5",
"eslint-config-universe": "^16.0.0",
"i18next": "^26.4.2",
"jest": "^29.7.0",
"jest-expo": "^55.0.17",
"newrelic-react-native-agent": "^1.9.0",
"prettier": "^3.9.6",
"react-i18next": "^17.0.13",
"react-test-renderer": "^19.2.5"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"adm-zip": "^0.6.1"
}
}