-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 946 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 946 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
36
37
38
39
40
41
42
{
"name": "rackspace-node",
"version": "1.0.0",
"description": "🚀Unofficial Node.js SDK for Rackspace Cloud Servers API v2.0",
"main": "./lib/rackspace",
"scripts": {
"start": "nodemon",
"prettier": "prettier --write '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cheesetouched/rackspace-node.git"
},
"keywords": [
"node",
"js",
"sdk",
"api",
"rackspace"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": "Rishabh Singh",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cheesetouched/rackspace-node/issues"
},
"homepage": "https://github.com/Cheesetouched/rackspace-node#readme",
"dependencies": {
"bluebird": "^3.7.2",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2"
},
"devDependencies": {
"husky": "^4.2.3",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
}
}