forked from slimapi/apib2json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 850 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
29
30
31
32
{
"name": "apib2json",
"version": "0.0.0",
"description": "A command-line utility for get JSON Schema(s) from API Blueprint",
"license": "MIT",
"author": "Petr Bugyík",
"bin": "./bin/apib2json",
"main": "./lib/apib2json.js",
"engines": {
"node": ">=14"
},
"dependencies": {
"commander": "~8.1.0",
"protagonist": "~2.2.1"
},
"devDependencies": {
"eslint": "~7.32.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-plugin-import": "~2.24.2",
"nyc": "~15.1.0"
},
"scripts": {
"test": "node ./test/apib2json.js",
"coverage": "npx nyc --reporter=clover --reporter=text --reporter=html npm test",
"lint": "npx eslint --color bin/* lib/* test/*.js",
"ci": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/slimapi/apib2json.git"
}
}