-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 922 Bytes
/
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
{
"name": "example-library-specification",
"version": "0.0.1",
"description": "An example library API definition",
"scripts": {
"test": "node_modules/.bin/speccy lint openapi.yml -j",
"resolve": "mkdir -p dist && node_modules/.bin/speccy resolve openapi.yml -j > dist/openapi.yml",
"serve": "node_modules/.bin/speccy serve openapi.yml -j",
"publish": "mkdir public && cp static/* public/ && cp dist/openapi.yml public/openapi.yml && cp -R schemas public/"
},
"repository": {
"type": "git",
"url": "[email protected]:devjack/example-library-specification.git"
},
"author": "Jack Skinner",
"license": "ISC",
"bugs": {
"url": "https://github.com/devjack/example-library-specification/issues"
},
"homepage": "https://github.com/devjack/example-library-specification",
"devDependencies": {
"speccy": "^0.7"
},
"engines": {
"node": ">=10",
"npm": ">=5.6"
}
}