UNPKG

2.06 kBJSONView Raw
1{
2 "name": "japa",
3 "version": "4.0.0",
4 "description": "Lean test runner for Node.js",
5 "main": "build/index.js",
6 "files": [
7 "build/src",
8 "build/index.js",
9 "build/index.d.ts",
10 "build/api.js",
11 "build/api.d.ts"
12 ],
13 "scripts": {
14 "mrm": "mrm --preset=@adonisjs/mrm-preset",
15 "pretest": "npm run lint",
16 "test": "npm run test:win",
17 "commit": "git-cz",
18 "test:win": "mocha -r ts-node/register test/*.spec.ts",
19 "clean": "del build",
20 "compile": "npm run lint && npm run clean && tsc",
21 "build": "npm run compile && node bin/postBuild.js",
22 "lint": "eslint . --ext=.ts",
23 "release": "np",
24 "version": "npm run build",
25 "prepublishOnly": "npm run build"
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/thetutlage/japa.git"
30 },
31 "author": "virk",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/thetutlage/japa/issues"
35 },
36 "homepage": "https://github.com/thetutlage/japa#readme",
37 "dependencies": {
38 "chai": "^4.2.0",
39 "chalk": "^4.0.0",
40 "debug": "^4.1.1",
41 "fast-glob": "^3.2.2",
42 "is-ci": "^2.0.0",
43 "jest-diff": "^26.0.1",
44 "ms": "^2.1.2",
45 "retry": "^0.12.0",
46 "time-span": "^4.0.0"
47 },
48 "devDependencies": {
49 "@adonisjs/mrm-preset": "^4.1.2",
50 "@types/chai": "^4.2.11",
51 "@types/mocha": "^7.0.2",
52 "@types/node": "^14.0.6",
53 "commitizen": "^4.1.2",
54 "cz-conventional-changelog": "^3.2.0",
55 "del-cli": "^3.0.1",
56 "doctoc": "^1.4.0",
57 "eslint": "^8.1.0",
58 "eslint-plugin-adonis": "^2.0.0",
59 "husky": "^7.0.4",
60 "mocha": "^7.2.0",
61 "mrm": "^3.0.10",
62 "np": "^7.5.0",
63 "ts-node": "^8.10.2",
64 "typescript": "^4.5.0-beta"
65 },
66 "config": {
67 "commitizen": {
68 "path": "cz-conventional-changelog"
69 }
70 },
71 "nyc": {
72 "exclude": [
73 "test"
74 ],
75 "extension": [
76 ".ts"
77 ]
78 },
79 "directories": {
80 "doc": "docs",
81 "test": "test"
82 },
83 "keywords": [
84 "test",
85 "test-runner"
86 ],
87 "np": {
88 "contents": ".",
89 "anyBranch": false
90 }
91}