-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.34 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
51
52
53
54
55
56
{
"name": "@vultr/vultr-node",
"private": false,
"version": "2.8.0",
"description": "Node module to communicate with the Vultr API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel src -d dist && tsc",
"test": "jest",
"lint": "eslint src",
"prettier": "prettier --write src",
"docs": "jsdoc --readme ./README.md ./src/api -r -d docs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vultr/vultr-node.git"
},
"keywords": [
"vultr",
"node",
"api"
],
"author": "Vultr",
"license": "MIT",
"bugs": {
"url": "https://github.com/vultr/vultr-node/issues"
},
"homepage": "https://github.com/vultr/vultr-node#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jsdoc": "^4.0.0",
"prettier": "^2.0.5"
},
"dependencies": {
"node-fetch": "^2.6.0",
"typescript": "^4.3.5"
},
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public"
}
}