forked from tape-testing/testling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name" : "testling",
"description" : "write tests for browser code",
"version" : "1.7.0",
"repository" : {
"type" : "git",
"url" : "git://github.com/substack/testling.git"
},
"main" : "index.js",
"browserify" : "browser.js",
"bin" : {
"testling" : "bin/cmd.js"
},
"keywords" : [
"test",
"browser",
"headless"
],
"scripts" : {
"prepublish" : "mkdir -p bundle && browserify browser/prelude.js -o bundle/prelude.js"
},
"dependencies" : {
"jsonify" : "~0.0.0",
"optimist" : "~0.5.2",
"xhr-write-stream" : "~0.1.2",
"concat-stream" : "~1.0.0",
"tap-finished" : "~0.0.0",
"ecstatic": "~0.4.5",
"browser-launcher": "~0.3.2",
"browserify": "3.x.x",
"resolve": "~0.4.0",
"glob": "~3.2.1",
"shell-quote": "~1.3.1",
"ent": "~0.0.5",
"bouncy": "~3.2.0",
"shallow-copy": "~0.0.0",
"object-inspect": "~0.1.3"
},
"bundledDependencies" : [ "browser-launcher" ],
"devDependencies": {
"tape": "~0.3.3"
},
"engines" : {
"node" : ">=0.6"
},
"license" : "MIT/X11",
"author" : {
"name" : "James Halliday",
"email" : "[email protected]",
"url" : "http://substack.net"
}
}