UNPKG

1.29 kBJSONView Raw
1{
2 "name": "ts-mocha",
3 "version": "1.0.2",
4 "description": "Mocha thin wrapper that allows running TypeScript tests with TypeScript runtime (ts-node) to get rid of compilation complexity",
5 "repository": "https://github.com/piotrwitek/ts-mocha",
6 "author": "Piotr Witek <piotrek.witek@gmail.com> (http://piotrwitek.github.io)",
7 "license": "MIT",
8 "main": "dist/index.js",
9 "typings": "dist/index.d.ts",
10 "bin": "./bin/ts-mocha",
11 "engines": {
12 "node": ">= 0.10.x"
13 },
14 "scripts": {
15 "prepublishOnly": "yarn run clean && yarn install --production && yarn add -D mocha && yarn start",
16 "clean": "rm -rf node_modules/",
17 "start": "./bin/ts-mocha -p test test/**/*.spec.ts",
18 "test": "echo \"Yet no tests was needed.\""
19 },
20 "dependencies": {
21 "ts-node": "^1.7.2"
22 },
23 "devDependencies": {
24 "@types/expect": "^1.13.31",
25 "@types/mocha": "^2.2.33",
26 "@types/node": "^0.0.2",
27 "expect": "^1.20.2",
28 "husky": "^0.11.9",
29 "mocha": "^3.2.0",
30 "tslint": "^4.0.2",
31 "typescript": "^2.1.4"
32 },
33 "peerDependencies": {
34 "mocha": "^3.2.0"
35 },
36 "files": [
37 "bin/",
38 "src/",
39 "package.json",
40 "README.md",
41 "LICENSE",
42 "yarn.lock"
43 ],
44 "keywords": [
45 "ts",
46 "mocha",
47 "typescript",
48 "ts-node",
49 "test"
50 ]
51}