-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
95 lines (95 loc) · 3.65 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
92
93
94
95
{
"name": "@signnow/api-client",
"clientName": "SignNow Node.js API Client",
"description": "SignNow REST Service Wrapper",
"version": "1.8.2",
"author": {
"name": "SignNow Team",
"email": "api@signnow.com"
},
"keywords": [
"signnow",
"document",
"sign",
"online",
"electronic",
"signature",
"api",
"client"
],
"main": "lib/index.js",
"repository": "github:signnow/SignNowNodeSDK",
"scripts": {
"lint": "./node_modules/.bin/eslint '**/*.js'",
"lint:fix": "./node_modules/.bin/eslint '**/*.js' --fix",
"docs": "./node_modules/.bin/esdoc",
"preversion": "npm run lint",
"version": "./tools/update-readme.js && npm run docs && git add -A .",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"chai": "*",
"esdoc": "1.1.0",
"esdoc-ecmascript-proposal-plugin": "1.0.0",
"esdoc-external-nodejs-plugin": "1.0.0",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-node": "1.0.4",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.0.1",
"husky": "3.0.2",
"mocha": "*"
},
"engines": {
"node": ">=6.4.0"
},
"files": [
"lib",
"config",
"utils",
"bin"
],
"bin": {
"sn:cancel-field-invite": "./bin/cancel-field-invite.js",
"sn:cancel-freeform-invite": "./bin/cancel-freeform-invite.js",
"sn:create-document-group-template": "./bin/create-document-group-template.js",
"sn:create-document-group": "./bin/create-document-group.js",
"sn:create-document": "./bin/create-document.js",
"sn:create-field-invite": "./bin/create-field-invite.js",
"sn:create-freeform-invite": "./bin/create-freeform-invite.js",
"sn:create-signing-link": "./bin/create-signing-link.js",
"sn:create-template": "./bin/create-template.js",
"sn:create-user": "./bin/create-user.js",
"sn:document-group-invite": "./bin/document-group-invite.js",
"sn:document-history": "./bin/document-history.js",
"sn:document-list": "./bin/document-list.js",
"sn:download-document": "./bin/download-document.js",
"sn:download-document-group": "./bin/download-document-group.js",
"sn:extract-fields": "./bin/extract-fields.js",
"sn:get-access-token": "./bin/get-access-token.js",
"sn:invite-documentgroup-template": "./bin/invite-documentgroup-template.js",
"sn:merge-documents": "./bin/merge-documents.js",
"sn:refresh-token": "./bin/refresh-token.js",
"sn:remove-document": "./bin/remove-document.js",
"sn:remove-template": "./bin/remove-template.js",
"sn:verify-email": "./bin/verify-email.js",
"sn:share-document": "./bin/share-document.js",
"sn:template-field-invite": "./bin/template-field-invite.js",
"sn:template-freeform-invite": "./bin/template-freeform-invite.js",
"sn:update-document": "./bin/update-document.js",
"sn:user-info": "./bin/user-info.js",
"sn:verify-access-token": "./bin/verify-access-token.js",
"sn:view-document-group": "./bin/view-document-group.js",
"sn:view-document": "./bin/view-document.js",
"sn:view-documentgroup-template": "./bin/view-documentgroup-template.js",
"sn:routing-details": "./bin/routing-details.js",
"sn:update-routing-details": "./bin/update-routing-details.js",
"sn:cancel-documentgroup-invite": "./bin/cancel-documentgroup-invite.js",
"sn:duplicate-template": "./bin/duplicate-template.js",
"sn:bulk-invite": "./bin/bulk-invite.js",
"sn:document-signers": "./bin/document-signers.js",
"sn:embedded-create-invites": "./bin/embedded-create-invites.js",
"sn:embedded-generate-link": "./bin/embedded-generate-link.js",
"sn:embedded-cancel-invites": "./bin/embedded-cancel-invites.js"
},
"license": "MIT"
}