-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"name": "react-native-docusign",
"version": "1.0.5",
"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",
"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": {
"@react-native/jest-preset": "^0.85.2",
"@testing-library/react-native": "^13.3.3",
"@types/adm-zip": "^0.5.8",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.39",
"jest": "^29.7.0",
"jest-expo": "^55.0.17",
"react-test-renderer": "^19.2.5"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"adm-zip": "^0.5.17"
}
}