forked from docusign/code-examples-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.5 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
{
"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"
},
"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": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"csurf": "^1.10.0",
"docusign-esign": "^5.3.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.16.2",
"fs": "0.0.1-security",
"fs-extra": "^6.0.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"memorystore": "^1.6.1",
"moment": "^2.24.0",
"passport": "^0.4.0",
"passport-docusign": "^1.1.0",
"path": "^0.12.7",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"stream": "0.0.2",
"validator": "^10.11.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.0"
}
}