forked from dfkaye/where.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"name": "where.js",
"version": "0.0.14",
"description": "data-driven test method for JavaScript test libraries",
"homepage" : "https://github.com/dfkaye/where.js",
"author": {
"name": "david kaye (@dfkaye)",
"email" : "[email protected]"
},
"contributors" : [
{
"name" : "Johann Sonntagbauer",
"email" : "[email protected]"
},
{ "name" : "Jason Karns",
"email" : "[email protected]"
},
{ "name" : "Jamon Holmgren",
"email" : "[email protected]"
},
{ "name" : "Casey Watson",
"email" : "[email protected]"
},
{ "name" : "Brad Chesney",
"email" : "[email protected]"
}
],
"keywords": [
"where",
"where-data",
"data-table",
"data-driven",
"jasmine",
"mocha",
"nodeunit",
"qunit",
"tape",
"testem"
],
"license": "JSON",
"main": "./where.js",
"devDependencies": {
"chai": ">= 1.x",
"expect.js": ">= 0.2",
"mocha": ">= 1.7",
"jasmine-node": "1.x.x",
"nodeunit" : ">= 0.8.6",
"qunitjs": ">= 1.13",
"qunit-tap": ">= 1.4",
"should": ">= 3.0.1",
"tape": ">= 2.3.2"
},
"repository": {
"type": "git",
"url": "git://github.com/dfkaye/where.js.git"
},
"scripts": {
"test": "jasmine-node --verbose ./test/where/where.spec.js",
"jasmine": "jasmine-node --verbose --matchall ./test/jasmine/where-spec.js",
"mocha": "node ./test/mocha/node-suite.js",
"nodeunit": "node ./test/nodeunit/node-suite.js",
"qunit": "node ./test/qunit/node-suite.js",
"tape": "node ./test/tape/node-suite.js",
"testem": "testem -l where -t ./test/where/browser-suite.html",
"testem-jasmine": "testem -l jasmine -t ./test/jasmine/browser-suite.html",
"testem-mocha": "testem -l mocha -t ./test/mocha/browser-suite.html",
"testem-nodeunit": "testem -l nodeunit -t ./test/nodeunit/browser-suite.html",
"testem-qunit": "testem -l qunit -t ./test/qunit/browser-suite.html",
"testem-tape": "testem -l tape -t ./test/tape/browser-suite.html"
}
}