-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "@zesty-io/sdk",
"version": "1.0.1",
"description": "Zesty.io software development kit for node.js runtime",
"main": "src/sdk.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zesty-io/node-sdk.git"
},
"author": "Zesty.io Developers <developers@zesty.io>",
"contributors": [
"Stuart Runyan <stuart@zesty.io>"
],
"license": "GNU",
"bugs": {
"url": "https://github.com/zesty-io/node-sdk/issues"
},
"homepage": "https://github.com/zesty-io/node-sdk#readme",
"scripts": {
"precommit": "pretty-quick --staged",
"test": "npx nyc ava --verbose --timeout=2m",
"release": "npm test && npm publish --access public"
},
"engines": {
"node": ">=18.12.1",
"npm": ">= 8.19.2"
},
"files": [
"/src"
],
"dependencies": {
"cookie": "0.4.0",
"form-data": "3.0.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"ava": "^5.1.0",
"dotenv": "8.2.0",
"husky": "^8.0.1",
"nyc": "15.0.1",
"prettier": "2.0.4",
"pretty-quick": "2.0.1"
},
"ava": {
"files": [
"src/**/**/**/*.test.js"
]
}
}