-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "browser-do",
"version": "5.0.0",
"description": "Run JavaScript in a browser, forward browser console log to stdout, great for running unit tests in browser.",
"main": "index.js",
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"jasmine-tap-reporter.js",
"lib",
"dist",
"bin"
],
"bin": "./bin/browser-do.js",
"scripts": {
"lint": "eslint index.js lib test",
"preversion": "npm test",
"version": "standard-changelog && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run lint && npm run build",
"test": "pta 'test/*.spec.js' --timeout 300000 --reporter tap",
"build": "node build-reporter.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/3cp/browser-do"
},
"keywords": [
"browser",
"test"
],
"author": "Chunpeng Huo",
"license": "MIT",
"bugs": {
"url": "https://github.com/3cp/browser-do/issues"
},
"homepage": "https://github.com/3cp/browser-do#readme",
"devDependencies": {
"cat": "^0.2.0",
"chai": "^5.1.1",
"concat-stream": "^2.0.0",
"esbuild": "^0.21.1",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^8.57.0",
"jasmine-core": "^5.1.2",
"mocha": "^10.4.0",
"parcel": "^2.12.0",
"pta": "^1.2.0",
"socket.io-client": "^4.7.5",
"source-map-support": "^0.5.21",
"standard-changelog": "^6.0.0",
"zora": "^5.2.0"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^12.0.0",
"electron": "^30.0.3",
"finalhandler": "^1.2.0",
"lodash.kebabcase": "^4.1.1",
"serve-static": "^1.15.0",
"server-destroy": "^1.0.1",
"socket.io": "^4.7.5",
"tmp": "^0.2.3",
"which": "^4.0.0"
}
}