forked from leopardslab/nodecloud-digitalocean-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 727 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 727 Bytes
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
{
"name": "nodecloud-do-plugin",
"version": "1.0.0",
"description": "DigitalOcean Plugin for Nodecloud Core",
"main": "index.js",
"scripts": {
"test": "jest",
"prettier": "prettier --write '**/*.js'"
},
"keywords": [
"nodecloud",
"nodecloud-do",
"nodecloud-core"
],
"repository": {
"type": "git",
"url": "https://github.com/cloudlibz/nodecloud-digitalocean-plugin"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Scorelab",
"license": "MIT",
"dependencies": {
"digitalocean": "^1.2.0"
},
"devDependencies": {
"husky": "^3.0.9",
"jest": "^24.8.0",
"prettier": "1.18.2",
"pretty-quick": "^2.0.1"
}
}