@hayspec/cli
Version:
CLI for Hayspec framework.
81 lines (80 loc) • 1.61 kB
JSON
{
"name": "@hayspec/cli",
"version": "0.10.2",
"description": "CLI for Hayspec framework.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"hayspec": "./bin/hayspec"
},
"scripts": {
"clean": "rm -Rf ./dist",
"build": "npm run clean; npx tsc",
"test": "npm run build; npx nyc npx ava --verbose"
},
"hayspec": {
"require": [
"ts-node/register"
],
"match": [
"./src/**/*.hay.*"
]
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/tests/*.test.ts",
"src/tests/**/*.test.ts"
]
},
"nyc": {
"exclude": [
"src/tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hayspec/framework.git"
},
"bugs": {
"url": "https://github.com/hayspec/framework/issues"
},
"homepage": "https://github.com/hayspec/framework#readme",
"keywords": [
"test",
"testing",
"spec",
"specification",
"hay",
"javascript",
"typescript",
"nodejs",
"tdd",
"unit",
"cli"
],
"author": "Kristijan Sedlak (Xpepermint)",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.37",
"@types/yargs": "^16.0.1",
"ava": "3.15.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@hayspec/init": "^0.10.2",
"@hayspec/reporter": "^0.10.2",
"@hayspec/runner": "^0.10.2",
"@hayspec/spec": "^0.10.2",
"inquirer": "^8.0.0",
"yargs": "^16.2.0"
}
}