Beau/package.json

53 lines
1.3 KiB
JSON

{
"name": "beau",
"version": "0.9.0",
"description": "Testing APIs made easy.",
"main": "./src/beau.js",
"author": "Sergio Diaz <seich@martianwabbit.com>",
"license": "MIT",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@oclif/command": "^1.4.16",
"@oclif/config": "^1.6.13",
"@oclif/plugin-help": "^1.2.5",
"@oclif/plugin-warn-if-update-available": "^1.3.6",
"cli-color": "^1.1.0",
"clui": "^0.3.1",
"deepmerge": "^2.1.0",
"dotenv": "^5.0.1",
"joi": "^13.2.0",
"globby": "^8.0.1",
"is-plain-object": "^2.0.4",
"js-yaml": "^3.11.0",
"jsome": "^2.5.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"requireg": "^0.1.6"
},
"repository": "git@github.com:Seich/Beau.git",
"devDependencies": {
"jest": "^22.4.0"
},
"oclif": {
"commands": "./bin/cli/commands",
"bin": "beau",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
},
"jest": {
"testEnvironment": "node",
"notify": true
},
"bin": {
"beau": "./bin/beau"
},
"engines": {
"node": ">=8.9.3"
}
}