-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "@salesvista/client",
"version": "0.9.3",
"description": "Node.js SDK for the SalesVista REST API",
"main": "index.js",
"files": [
"api/*.js",
"cache-strategy.js",
"client.js",
"errors.js",
"index.js"
],
"scripts": {
"pretest": "standard",
"test": "c8 --reporter=html --reporter=text ava",
"coverage": "c8 report --reporter=html --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SalesVista/api-client-node.git"
},
"keywords": [
"salesvista",
"api",
"client"
],
"engines": {
"node": ">=14"
},
"author": "nexdrew",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SalesVista/api-client-node/issues"
},
"homepage": "https://github.com/SalesVista/api-client-node#readme",
"dependencies": {
"got": "^12.0.0"
},
"devDependencies": {
"ava": "^4.0.0",
"c8": "^7.8.0",
"coveralls": "^3.1.1",
"standard": "^16.0.3",
"standard-version": "^9.3.1"
}
}