forked from testem/testem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.67 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": "testem",
"description": "Test'em 'scripts! Javascript Unit testing made easy.",
"keywords": [
"javascript",
"testing",
"unittest",
"browser"
],
"version": "0.6.8",
"author": "Toby Ho <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/airportyh/testem.git"
},
"bugs": {
"url": "http://github.com/airportyh/testem/issues"
},
"engines": [
"node >= 0.8.0"
],
"license": "MIT",
"dependencies": {
"express": "~3.1.0",
"mustache": "~0.4.0",
"socket.io": "~0.9.13",
"charm": "~0.0.5",
"js-yaml": "~2.1.0",
"tap": "~0.4.4",
"commander": "*",
"glob": "~3.1.21",
"async": "~0.2.7",
"rimraf": "~2.2.0",
"backbone": "~1.0.0",
"styled_string": "*",
"colors": "~0.6.0",
"fileset": "~0.1.4",
"growl": "~1.7.0",
"consolidate": "~0.8.0",
"did_it_work": "~0.0.5",
"fireworm": "~0.6.0",
"npmlog": "~0.0.6"
},
"files": [
"lib",
"public",
"README.md",
"testem.js",
"assets",
"package.json",
"views"
],
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 3000 tests/*_tests.js tests/*/*_tests.js -R spec",
"cover": "cover run ./node_modules/.bin/_mocha tests/*_tests.js tests/*/*_tests.js; cover report html; open cover_html/index.html"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"request": "~2.12.0",
"jsdom": "~0.5.2",
"bodydouble": "~0.1.1",
"ispy": "~0.1.1",
"concat-stream": "~1.0.0",
"sinon": "~1.7.3"
},
"bin": {
"testem": "./testem.js"
},
"main": "./lib/api.js",
"bundleDependencies": [
"express"
],
"optionalDependencies": {}
}