forked from hellosign/hellosign-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.mustache
44 lines (44 loc) · 1.3 KB
/
package.mustache
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
{
"name": "{{npmName}}",
"version": "{{npmVersion}}",
"description": "Official Node client for Dropbox Sign",
"repository": {
"type": "git",
"url": "https://github.com/hellosign/dropbox-sign-node"
},
"bugs:": "[email protected]",
"main": "dist/api.js",
"types": "types/api.d.ts",
"scripts": {
"clean": "rm -Rf node_modules/ *.js",
"build": "esbuild api.ts --bundle --platform=node --outfile=dist/api.js",
"build-types": "tsc",
"test": "jest",
"prettier": "prettier --write ./api/ ./model/"
},
"author": "Dropbox Sign",
"dependencies": {
"axios": "^0.24.0",
"bluebird": "^3.5.0",
"crypto-js": "^4.1.1",
"form-data": "^4.0.0",
"qs": "^6.10.3"
},
"devDependencies": {
"@types/bluebird": "3.5.33",
"@types/crypto-js": "^4.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"axios-mock-adapter": "^1.20.0",
"esbuild": "^0.14.54",
"jest": "^27.4.7",
"json-diff": "^0.7.1",
"prettier": "2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^3.9.5"
}{{#npmRepository}},
"publishConfig": {
"registry": "{{npmRepository}}"
}{{/npmRepository}}
}