-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "browser-run",
"description": "Transform stream that executes JavaScript it receives in a real browser and outputs console output",
"version": "12.0.0",
"repository": {
"type": "git",
"url": "git://github.com/juliangruber/browser-run.git"
},
"homepage": "https://github.com/juliangruber/browser-run",
"main": "index.js",
"bin": {
"browser-run": "./bin/bin.js"
},
"scripts": {
"build": "browserify browser/reporter.js -o static/reporter.js",
"prepublish": "npm run build",
"release": "np",
"test": "npm run build && node--test"
},
"dependencies": {
"browser-launcher": "^3.0.1",
"duplexer": "^0.1.1",
"ecstatic": "^4.1.2",
"electron-stream": "^11.0.0",
"enstore": "^1.0.1",
"html-inject-script": "^2.0.0",
"server-destroy": "^1.0.1",
"source-map-support": "^0.4.0",
"through": "^2.3.8",
"xhr-write-stream": "^0.1.2",
"xtend": "^4.0.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"browserify": "^14.1.0",
"concat-stream": "^1.5.1",
"np": "^8.0.4",
"test": "^3.0.0",
"tree-kill": "^1.0.0",
"utf8-stream": "^0.0.0"
},
"keywords": [
"browser",
"stream",
"test",
"headless",
"duplex"
],
"author": {
"name": "Julian Gruber",
"email": "[email protected]",
"url": "http://juliangruber.com"
},
"license": "MIT",
"engines": {
"node": ">=14"
}
}