japa
Version:
Lean test runner for Node.js
92 lines (91 loc) • 2.06 kB
JSON
{
"name": "japa",
"version": "4.0.0",
"description": "Lean test runner for Node.js",
"main": "build/index.js",
"files": [
"build/src",
"build/index.js",
"build/index.d.ts",
"build/api.js",
"build/api.d.ts"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "npm run test:win",
"commit": "git-cz",
"test:win": "mocha -r ts-node/register test/*.spec.ts",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc",
"build": "npm run compile && node bin/postBuild.js",
"lint": "eslint . --ext=.ts",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thetutlage/japa.git"
},
"author": "virk",
"license": "MIT",
"bugs": {
"url": "https://github.com/thetutlage/japa/issues"
},
"homepage": "https://github.com/thetutlage/japa#readme",
"dependencies": {
"chai": "^4.2.0",
"chalk": "^4.0.0",
"debug": "^4.1.1",
"fast-glob": "^3.2.2",
"is-ci": "^2.0.0",
"jest-diff": "^26.0.1",
"ms": "^2.1.2",
"retry": "^0.12.0",
"time-span": "^4.0.0"
},
"devDependencies": {
"@adonisjs/mrm-preset": "^4.1.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.6",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"doctoc": "^1.4.0",
"eslint": "^8.1.0",
"eslint-plugin-adonis": "^2.0.0",
"husky": "^7.0.4",
"mocha": "^7.2.0",
"mrm": "^3.0.10",
"np": "^7.5.0",
"ts-node": "^8.10.2",
"typescript": "^4.5.0-beta"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"test",
"test-runner"
],
"np": {
"contents": ".",
"anyBranch": false
}
}