-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
70 lines (70 loc) · 1.68 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
{
"name": "docusign-esign",
"version": "8.0.1",
"description": "Docusign Node.js API client.",
"license": "MIT",
"main": "src/index.js",
"author": "DocuSign Developer Center <[email protected]>",
"contributors": [
"https://github.com/docusign/docusign-node-client/contributors"
],
"files": [
"src"
],
"keywords": [
"docusign",
"signature",
"esignature",
"esign",
"digital",
"electronic",
"transaction",
"document",
"certificate",
"DTM",
"PDF"
],
"engines": {
"node": ">=2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/docusign/docusign-node-client.git"
},
"scripts": {
"docs": "npm run update-docs && git add docs/ && git commit -m 'update docs' && npm run push-docs",
"push-docs": "git subtree push --prefix docs origin gh-pages",
"update-docs": "./node_modules/.bin/jsdoc -c .jsdoc.json",
"check-config": "./scripts/check-config.js",
"test": "semistandard --fix && ./node_modules/mocha/bin/mocha --reporter mocha-junit-reporter --timeout 60000"
},
"semistandard": {
"globals": [
"before",
"describe",
"it"
],
"ignore": [
"/src",
"/docs",
"/scripts"
]
},
"dependencies": {
"axios": "^1.6.8",
"@devhigley/parse-proxy":"^1.0.3",
"csv-stringify": "^1.0.0",
"jsonwebtoken": "^9.0.0",
"passport-oauth2": "^1.6.1",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
"docdash": "0.4.0",
"expect.js": "~0.3.1",
"jsdoc": "3.6.10",
"mocha": "~5.0.4",
"mocha-junit-reporter": "^1.18.0",
"pdf-parse-fork": "^1.2.0",
"semistandard": "^12.0.1"
}
}