-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
57
58
59
{
"name": "scaleway-api-client",
"version": "2.0.0",
"description": "NodeJS API Client for Scaleway",
"main": "lib.js",
"scripts": {
"release": "release-it",
"build": "node build.js",
"doc": "jsdoc -c ./jsdoc.json"
},
"release-it": {
"github": {
"release": true
},
"hooks": {
"after:bump": "npm run build && npm run doc && git add docs/* && git commit -m 'doc: updated'"
}
},
"files": [
"README.md",
"lib.js"
],
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/scaleway-api-client.git"
},
"bugs": {
"url": "https://github.com/FGRibreau/scaleway-api-client/issues"
},
"homepage": "https://github.com/FGRibreau/scaleway-api-client",
"keywords": [
"scaleway",
"api",
"client",
"cloud"
],
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com/)",
"engines": {
"node": "12"
},
"license": "MIT",
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"dependencies": {
"axios": "^0.20.0"
},
"devDependencies": {
"docdash": "^1.2.0",
"jest": "^26.4.2",
"jsdoc": "^3.6.5",
"prettier": "^2.1.1",
"release-it": "^14.0.2",
"yaml": "^1.10.0"
}
}