-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 917 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 917 Bytes
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
{
"name": "jwt_console_project",
"version": "1.0.0",
"description": "JWT authentication with a single DocuSign code example",
"main": "jwtConsole.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"relocate": "[ ! -d 'node_modules' ] || (rm -rf ../node_modules && mv -f node_modules ../)",
"relocate_windows": "(if exist node_modules/ (cd ../ && remove-node-modules && move jwt_console_project/node_modules ./))",
"start": "(npm run relocate --silent || npm run relocate_windows --silent) && node jwtConsole.js"
},
"author": "DocuSign, Inc",
"license": "ISC",
"dependencies": {
"docusign-esign": "^8.0.1",
"fs": "^0.0.1-security",
"fs-extra": "^11.2.0",
"path": "^0.12.7",
"prompt-sync": "^4.2.0",
"remove-node-modules": "^1.7.6"
},
"overrides": {
"pac-resolver": "^7.0.1",
"semver": "^7.5.4"
}
}