This repository was archived by the owner on Feb 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 KB
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
{
"scripts": {
"start": "node vultr.js",
"test": "node test/run all",
"test-all": "node test/run all",
"test-unit": "node test/run unit",
"test-integration": "node test/run integration",
"test-int": "node test/run integration",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"name": "vultr",
"license": "MIT",
"dependencies": {
"bluebird": "^2.6.2",
"moment": "^2.29.1",
"request-promise": "^4.2.6",
"snyk": "^1.685.0"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-as-promised": "^4.1.1",
"jshint": "^2.5.10",
"jshint-stylish": "^0.4.0",
"mocha": "^5.2.0",
"optimist": "^0.6.1",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0"
},
"description": "Promise-based library to communicate with the Vultr API",
"version": "0.0.9",
"main": "vultr.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/DeviaVir/node-vultr.git"
},
"keywords": [
"vultr",
"api",
"library",
"lib",
"vps",
"service"
],
"author": "Chase Sillevis <chase@sillevis.net> (http://chase.sillevis.net/)",
"bugs": {
"url": "https://github.com/DeviaVir/node-vultr/issues"
},
"homepage": "https://github.com/DeviaVir/node-vultr",
"snyk": true
}