-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
76 lines (76 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "docusign-code-examples",
"version": "1.0.0",
"description": "DocuSign eSignature Code examples using either Authorization Code Grant and JWT OAuth",
"main": "index.js",
"scripts": {
"debug": "node --inspect-brk index.js",
"start": "node index.js",
"test": "mocha",
"update-sources": "node lib/utilities/updateSources.js",
"update-sources-debug": "node --inspect-brk lib/utilities/updateSources.js",
"lint": "eslint .",
"lint-fix": "eslint --fix --debug ."
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/docusign/code-examples-nodejs"
},
"author": "DocuSign, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/docusign/code-examples-nodejs/issues"
},
"homepage": "https://github.com/docusign/code-examples-nodejs#readme",
"engines": {
"node": ">=8.10"
},
"dependencies": {
"axios": "^1.7.7",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"csurf": "^1.11.0",
"docusign-admin": "^3.0.0-rc2",
"docusign-click": "^2.2.0",
"docusign-esign": "^8.0.1",
"docusign-maestro": "1.0.0-rc5",
"docusign-monitor": "^2.1.0",
"docusign-rooms": "^2.0.0",
"docusign-webforms": "^1.0.0",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-flash": "0.0.2",
"express-session": "^1.18.1",
"fs": "0.0.1-security",
"fs-extra": "^11.2.0",
"helmet": "^3.23.3",
"jsonwebtoken": "^9.0.2",
"memorystore": "^1.6.7",
"moment": "^2.30.1",
"node-fetch": "2.7.0",
"passport": "^0.7.0",
"passport-docusign": "^1.3.0",
"path": "^0.12.7",
"store2": "^2.14.3",
"stream": "0.0.2",
"uuid": "^10.0.0",
"validator": "^13.12.0"
},
"devDependencies": {
"chai": "^4.5.0",
"chai-exclude": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"mocha": "^10.7.3"
},
"overrides": {
"braces": "^3.0.3",
"degenerator": "^5.0.1",
"pac-resolver": "^7.0.1",
"formidable": "^3.5.1",
"socks": "^2.8.3"
}
}