Beau/package.json

66 lines
1.7 KiB
JSON

{
"name": "beau",
"version": "0.9.5",
"description": "Testing APIs made easy.",
"main": "./src/beau.js",
"author": "Sergio Diaz <seich@martianwabbit.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage ./src",
"release": "np"
},
"files": [
"/src",
"/bin"
],
"dependencies": {
"@oclif/command": "^1.4.34",
"@oclif/config": "^1.6.33",
"@oclif/plugin-help": "^2.0.5",
"@oclif/plugin-warn-if-update-available": "^1.3.9",
"beau-std": "^0.9.4",
"cli-color": "^1.1.0",
"clui": "^0.3.1",
"deepmerge": "^2.1.1",
"dotenv": "^6.0.0",
"globby": "^8.0.1",
"is-plain-object": "^2.0.4",
"joi": "^13.4.0",
"js-yaml": "^3.12.0",
"jsome": "^2.5.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"requireg": "^0.1.8"
},
"repository": "git@github.com:Seich/Beau.git",
"devDependencies": {
"jest": "^23.4.1",
"jest-watch-typeahead": "^0.2.0",
"np": "^3.0.4",
"strip-ansi": "^5.0.0"
},
"oclif": {
"commands": "./bin/cli/commands",
"bin": "beau",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
},
"jest": {
"testEnvironment": "node",
"notify": true,
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"bin": {
"beau": "./bin/beau"
},
"engines": {
"node": ">=8.10.0"
}
}