api-cli/package.json

30 lines
639 B
JSON
Raw Permalink Normal View History

2021-07-07 11:18:50 +02:00
{
2021-07-07 11:59:44 +02:00
"name": "@nclazz/apicli",
2021-07-08 19:05:42 +02:00
"version": "1.1.1",
2021-07-07 11:18:50 +02:00
"description": "Commandline interface for generating and linting api-specs.",
"main": "./src/index.js",
"bin": "./src/index.js",
2021-07-07 11:59:44 +02:00
"publishConfig": {
"registry": "https://nexus.nclazz.de/repository/npm_releases/"
2021-07-07 11:18:50 +02:00
},
"scripts": {
"test": "mocha ./tests"
},
2021-07-07 11:18:50 +02:00
"keywords": [
"api",
"apispec",
"apibuilder",
"nclazz"
],
"author": "Niclas Thobaben",
"license": "MIT",
2021-07-07 11:59:44 +02:00
"dependencies": {
2021-07-08 18:55:22 +02:00
"args-parser": "1.3.0",
"chai": "^4.3.4",
"mocha": "^9.0.2",
2021-07-07 16:12:44 +02:00
"npm-cli-login": "0.1.1",
"object-path": "0.11.5",
"readline": "1.3.0"
2021-07-07 11:59:44 +02:00
}
2021-07-07 11:18:50 +02:00
}