-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "notehub-js",
"description": "JavaScript library for accessing the Blues Wireless Notehub API endpoints",
"main": "./src/dist/index.js",
"scripts": {
"downloadJsTemplate": "openapi-generator-cli author template -g javascript --library javascript",
"generateDocs": "openapi-generator-cli generate -g javascript --library javascript -t libTemplate -o src -i openapi.yaml -c config.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/blues/notehub-js.git",
"directory": "src"
},
"keywords": [
"blues-io",
"notehub-io",
"api",
"javascript"
],
"author": "Paige Niedringhaus <paige@blues.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blues/notehub-js/issues"
},
"homepage": "https://github.com/blues/notehub-js#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"directory": "./src"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.2",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3"
},
"volta": {
"node": "18.13.0",
"npm": "9.4.0"
}
}