UNPKG

1.37 kBJSONView Raw
1{
2 "name": "@hayspec/runner",
3 "version": "0.9.0",
4 "description": "Tests runner for Hayspec framework.",
5 "main": "./dist/index.js",
6 "types": "./dist/index.d.ts",
7 "scripts": {
8 "clean": "rm -Rf ./dist",
9 "build": "npm run clean; npx tsc",
10 "test": "npx nyc npx ava --verbose"
11 },
12 "ava": {
13 "compileEnhancements": false,
14 "extensions": [
15 "ts"
16 ],
17 "require": [
18 "ts-node/register"
19 ],
20 "files": [
21 "src/tests/*.test.ts",
22 "src/tests/**/*.test.ts"
23 ]
24 },
25 "nyc": {
26 "extension": [
27 ".ts"
28 ],
29 "require": [
30 "ts-node/register"
31 ],
32 "exclude": [
33 "src/tests"
34 ]
35 },
36 "repository": {
37 "type": "git",
38 "url": "git+https://github.com/hayspec/framework.git"
39 },
40 "bugs": {
41 "url": "https://github.com/hayspec/framework/issues"
42 },
43 "homepage": "https://github.com/hayspec/framework#readme",
44 "keywords": [
45 "test",
46 "testing",
47 "spec",
48 "specification",
49 "hay",
50 "javascript",
51 "typescript",
52 "nodejs",
53 "tdd",
54 "unit",
55 "cli"
56 ],
57 "author": "Kristijan Sedlak (Xpepermint)",
58 "license": "MIT",
59 "devDependencies": {
60 "@types/node": "^12.7.8",
61 "ava": "1.0.1",
62 "nyc": "^14.1.1",
63 "ts-node": "^8.4.1",
64 "typescript": "^3.6.3"
65 },
66 "dependencies": {
67 "@hayspec/spec": "^0.9.0",
68 "fast-glob": "^3.0.4"
69 }
70}