-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 969 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 969 Bytes
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
{
"name": "type-unit",
"version": "1.0.3",
"description": "TypeScript testing framework. Inspired by XUnit.",
"main": "dist/index.js",
"scripts": {
"test" : "mocha dist/",
"build": "tsc",
"prepublish" : "tsc"
},
"typescript": {
"definition": "dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/basespace/type-unit.git"
},
"keywords": [
"TypeScript",
"JavaScript",
"unit",
"testing",
"framework",
"mocha",
"XUnit"
],
"author": "Andrew Roberts <aroberts@illumina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/basespace/type-unit/issues"
},
"homepage": "https://github.com/basespace/type-unit",
"dependencies": {
"reflect-metadata": "0.1.3"
},
"devDependencies" : {
"expect": "1.18.0",
"mocha": "2.3.0",
"typescript": "1.8.7",
"typings": "0.8.1"
},
"files" : [
"type-unit.d.ts",
"dist/index.js"
]
}