forked from docusign/docusign-esign-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.23 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "docusign",
"version": "7.1.1",
"description": "A DocuSign API helper library with promise support",
"main": "docusign.js",
"scripts": {
"docs": "jsdoc -d doc -r docusign.js dsUtils.js components/ README.md",
"lint": "semistandard",
"check-config": "./scripts/check-config.js",
"test-cb-examples": "mocha examples/callback-style",
"test-spec": "ava test/**/*.spec.js",
"test-cov": "nyc --reporter=lcov ava test/**/*.spec.js test/*.spec.js",
"test": "npm run lint && npm run test-cov"
},
"keywords": [
"DocuSign",
"promise",
"electronic",
"signature",
"eSignature",
"certificate",
"DTM",
"PDF"
],
"license": {
"type": "DocuSign",
"url": "https://raw.githubusercontent.com/docusign/docusign-node-client/master/LICENSE"
},
"engines": {
"node": ">=0.10.0"
},
"author": "Nikhil Mashettiwar <[email protected]>",
"contributors": [
"Chris Beiter <[email protected]>",
"CJ Winslow <[email protected]> (https://github.com/whoaa512)"
],
"files": [
"docusign.js",
"dsUtils.js",
"components",
"scripts",
"examples",
"sample-config.json"
],
"repository": "https://github.com/docusign/docusign-node-client",
"dependencies": {
"bluebird": "2.9.34",
"lodash.assign": "3.2.0",
"lodash.foreach": "3.0.3",
"lodash.isempty": "3.0.4",
"lodash.isplainobject": "3.2.0",
"lodash.merge": "3.3.2",
"request": "^2.81.0",
"streamifier": "0.1.0",
"temp": "0.9.4",
"uuid": "2.0.1"
},
"devDependencies": {
"async": "0.9.0",
"ava": "git://github.com/sindresorhus/ava.git#7cebc1099337463f92b991859dcce5ffdc9dfc80",
"babel-eslint": "4.1.3",
"chalk": "^1.1.0",
"file-type": "2.5.0",
"jsdoc": "3.3.2",
"lodash.clone": "3.0.3",
"mocha": "2.2.4",
"nock": "2.15.0",
"nyc": "3.2.2",
"pre-commit": "1.0.10",
"proxyquire": "1.7.3",
"require-uncached": "1.0.2",
"semistandard": "7.0.5",
"sinon": "1.17.1",
"write-json-file": "1.1.1"
},
"pre-commit": [
"lint"
],
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"doc"
],
"global": [
"it",
"describe",
"before",
"after"
]
}
}