-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ts-x-unit",
"version": "0.15.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"description": "TypeScript xUnit testing framework implementation. ",
"author": {
"name": "samizdam",
"email": "<[email protected]>",
"url": "https://github.com/samizdam"
},
"contributors": [
{
"name": "samizdam",
"email": "<[email protected]>",
"url": "https://github.com/samizdam"
},
{
"name": "Petr Karmashev",
"email": "[email protected]",
"url": "https://github.com/Vehsamrak"
}
],
"bugs": "https://github.com/FreeElephants/TSxUnit/issues",
"keywords": [
"xunit",
"typescript",
"TDD",
"unit testing",
"testing framework"
],
"files": [
"bin/suite-builder",
"bin/suite-builder.js",
"dist/"
],
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "[email protected]:FreeElephants/TSxUnit.git"
},
"scripts": {
"tsc": "tsc",
"build": "tsc",
"compile-builder": "tsc bin/suite-builder-int.ts",
"clear-tests": "rm tests/*.js && rm tests/*.js.map",
"build-suite-launcher": "node bin/suite-builder-int.js tests/ && tsc tests/suite.ts",
"pretest": "npm run build && npm run compile-builder && npm run build-suite-launcher",
"test": "node tests/suite.js",
"aftertest": "npm run clear-tests",
"prepublish": "tsc bin/suite-builder.ts",
"istanbul": "istanbul",
"remap-istanbul": "remap-istanbul",
"coverage": "npm run pretest && rm -rf coverage/* && istanbul cover tests/suite.js && remap-istanbul --input coverage/coverage.json --output coverage/html-report --type html && remap-istanbul --input coverage/coverage.json --output coverage/coverage-final.json"
},
"bin": {
"suite-builder": "bin/suite-builder"
},
"dependencies": {
"@types/log4js": "0.0.32",
"@types/node": "^6.0",
"jsdom": "^9.4.5",
"jsdom-global": "^2.1.0",
"jsmockito": "^1.0.5",
"log4js": "0.6.*",
"minimist": "1.2.*",
"sync-request": "^3.0.1"
},
"devDependencies": {
"istanbul": "^0.4.5",
"remap-istanbul": "^0.7.0",
"tslint": "3.15.*",
"typescript": "^2.0"
}
}