forked from NemProject/miscellaneous
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 928 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 928 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
{
"name": "nem-openapi",
"version": "0.0.1",
"description": "OpenAPI Specification of NEM Rest interface",
"main": "index.js",
"scripts": {
"test": "swagger-cli validate _build/openapi3.yaml",
"build": "swagger-cli bundle ./spec/openapi.yaml --outfile _build/openapi3.yaml --type yaml",
"version": "echo $npm_package_version",
"version:prepare": "mkdir _build/v$npm_package_version && cp -r _build/template/. _build/v$npm_package_version",
"version:pack": "cp _build/openapi3.yaml _build/v$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NemProject/nem-openapi.git"
},
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/NemProject/nem-openapi/issues"
},
"homepage": "https://github.com/NemProject/nem-openapi#readme",
"dependencies": {},
"devDependencies": {
"swagger-cli": "^4.0.4",
"yaml-cli": "^1.1.8"
}
}