-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 1.8 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
76
77
78
79
80
81
82
83
{
"name": "qunit-tap",
"description": "A TAP Output Producer Plugin for QUnit",
"version": "1.5.1",
"author": {
"name": "Takuto Wada",
"email": "[email protected]",
"url": "https://github.com/twada"
},
"bugs": {
"url": "https://github.com/twada/qunit-tap/issues"
},
"contributors": [
{
"name": "Nikita Vasilyev",
"url": "http://elv1s.ru/"
},
{
"name": "Hiroki Kondo",
"url": "https://github.com/kompiro"
},
{
"name": "Keiji Yoshimi",
"url": "https://github.com/walf443"
},
{
"name": "Hiroki Honda",
"url": "https://github.com/Cside"
},
{
"name": "gyles19",
"url": "https://github.com/gyles19"
},
{
"name": "Alexander Mackay-Austin",
"url": "https://github.com/am-a"
}
],
"devDependencies": {
"minimist": "^1.2.0",
"phantomjs-prebuilt": "^2.1.7",
"semver": "^5.3.0",
"tap-consumer": "git://github.com/twada/tap-consumer.git#fix-super"
},
"directories": {
"lib": "./lib",
"example": "./sample"
},
"engines": [
"node >=0.1.96",
"spidermonkey",
"rhino",
"phantomjs"
],
"files": [
"GPL-LICENSE.txt",
"MIT-LICENSE.txt",
"README.md",
"lib",
"package.json"
],
"homepage": "https://github.com/twada/qunit-tap",
"keywords": [
"QUnit",
"TAP",
"TDD",
"test",
"testing",
"tests"
],
"license": "(MIT OR GPL-2.0)",
"main": "./lib/qunit-tap",
"repository": {
"type": "git",
"url": "https://github.com/twada/qunit-tap.git"
},
"scripts": {
"test": "npm run test-node && npm run test-phantomjs",
"test-node": "node test/runner.js --suite=node",
"test-phantomjs": "node test/runner.js --suite=phantomjs",
"test-rhino": "node test/runner.js --suite=rhino"
}
}