UNPKG

1.4 kBJSONView Raw
1{
2 "name": "@hayspec/runner",
3 "version": "0.7.5",
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 "transpile": "npm run clean; tsc",
10 "prepare": "npm run transpile",
11 "test": "nyc ava"
12 },
13 "ava": {
14 "compileEnhancements": false,
15 "extensions": [
16 "ts"
17 ],
18 "require": [
19 "ts-node/register"
20 ],
21 "files": [
22 "src/tests/*.test.ts",
23 "src/tests/**/*.test.ts"
24 ]
25 },
26 "nyc": {
27 "extension": [
28 ".ts"
29 ],
30 "require": [
31 "ts-node/register"
32 ],
33 "exclude": [
34 "src/tests"
35 ]
36 },
37 "repository": {
38 "type": "git",
39 "url": "git+https://github.com/hayspec/framework.git"
40 },
41 "bugs": {
42 "url": "https://github.com/hayspec/framework/issues"
43 },
44 "homepage": "https://github.com/hayspec/framework#readme",
45 "keywords": [
46 "test",
47 "testing",
48 "spec",
49 "specification",
50 "hay",
51 "javascript",
52 "typescript",
53 "nodejs",
54 "tdd",
55 "unit",
56 "cli"
57 ],
58 "author": "Kristijan Sedlak (Xpepermint)",
59 "license": "MIT",
60 "devDependencies": {
61 "@types/node": "^10.11.4",
62 "ava": "^1.0.0-beta.8",
63 "nyc": "^13.0.1",
64 "ts-node": "^7.0.1",
65 "typescript": "^3.1.1"
66 },
67 "dependencies": {
68 "@hayspec/spec": "^0.7.5",
69 "fast-glob": "^2.2.3"
70 }
71}