-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.83 KB
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": "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": {
"@eslint/js": "^10.0.1",
"cat": "^0.2.0",
"chai": "^6.2.2",
"concat-stream": "^2.0.0",
"esbuild": "^0.28.2",
"esbuild-plugin-polyfill-node": "^0.3.0",
"eslint": "^10.9.1",
"globals": "^17.12.0",
"jasmine-core": "^7.0.2",
"mocha": "^12.0.0",
"parcel": "^2.16.4",
"pta": "~1.2.0",
"socket.io-client": "^4.8.3",
"source-map-support": "^0.5.21",
"standard-changelog": "^8.1.0",
"zora": "^5.2.0"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"commander": "^15.0.0",
"electron": "^44.1.1",
"finalhandler": "^2.1.1",
"lodash.kebabcase": "^4.1.1",
"serve-static": "^2.2.1",
"server-destroy": "^1.0.1",
"socket.io": "^4.8.3",
"tmp": "^0.2.7",
"which": "^7.0.0"
}
}