UNPKG

1.44 kBJSONView Raw
1{
2 "name": "@testdeck/mocha",
3 "version": "0.2.0",
4 "description": "Object oriented testing for the Mocha test framework",
5 "keywords": [
6 "test",
7 "testing",
8 "mocha",
9 "typescript",
10 "bdd",
11 "tdd",
12 "object oriented",
13 "object-oriented"
14 ],
15 "author": "Panayot Cankov",
16 "contributors": [
17 {
18 "name": "silkentrance",
19 "url": "https://github.com/silkentrance"
20 }
21 ],
22 "homepage": "https://testdeck.org/",
23 "license": "Apache-2.0",
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/testdeck/testdeck.git"
27 },
28 "bin": {
29 "testdeck-watch": "./bin/watch"
30 },
31 "main": "dist/index.js",
32 "types": "index.d.ts",
33 "scripts": {
34 "prepare": "tsc",
35 "pretest": "tsc",
36 "test": "nyc mocha dist/test.js && tslint --project .",
37 "tslint": "tslint --project .",
38 "tslint-fix": "tslint --project . --fix"
39 },
40 "dependencies": {
41 "@testdeck/core": "^0.2.0"
42 },
43 "nyc": {
44 "check-coverage": true,
45 "lines": 80,
46 "statements": 80,
47 "functions": 80,
48 "branches": 80,
49 "include": [
50 "dist/index.js"
51 ],
52 "reporter": [
53 "lcov",
54 "text-summary"
55 ],
56 "all": true
57 },
58 "devDependencies": {
59 "@types/mocha": "latest"
60 },
61 "files": [
62 "bin/watch",
63 "dist/index.js",
64 "dist/index.js.map",
65 "index.d.ts",
66 "index.ts",
67 "README.md",
68 "LICENSE"
69 ],
70 "publishConfig": {
71 "access": "public"
72 }
73}