-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1005 Bytes
/
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
{
"name": "adobe-sign-downloader",
"version": "1.2.0",
"description": "Download documents from Adobe Sign",
"main": "bin/index.js",
"bin": "bin/index.js",
"files": ["bin"],
"scripts": {
"prepublishOnly": "npm run build && npm run lint",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/adobe-sign-downloader.git"
},
"keywords": [
"adobe",
"sign",
"downloader"
],
"author": "James Monger <[email protected]> (http://jamesmonger.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewOrbit/adobe-sign-downloader/issues"
},
"homepage": "https://github.com/NewOrbit/adobe-sign-downloader#readme",
"devDependencies": {
"@types/node": "^10.1.2",
"neworbit-tslint-config": "^2.0.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"adobe-sign-sdk": "^1.1.0",
"make-dir": "^1.3.0"
}
}