-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.56 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "testem",
"description": "Test'em 'scripts! JavaScript unit testing made easy.",
"keywords": [
"javascript",
"testing",
"unittest",
"browser"
],
"version": "3.20.0",
"author": "Toby Ho <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/testem/testem.git"
},
"bugs": {
"url": "https://github.com/testem/testem/issues"
},
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"license": "MIT",
"dependencies": {
"@xmldom/xmldom": "^0.9.9",
"backbone": "^1.6.1",
"charm": "^1.0.2",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"compression": "^1.8.1",
"consolidate": "^1.0.4",
"execa": "^9.6.1",
"express": "^5.2.1",
"glob": "^13.0.6",
"http-proxy": "^1.18.1",
"js-yaml": "^4.1.1",
"lodash": "^4.18.1",
"minimatch": "^10.2.5",
"mkdirp": "^3.0.1",
"mustache": "^4.2.0",
"toasted-notifier": "^10.1.0",
"printf": "^0.6.1",
"proc-log": "^6.1.0",
"rimraf": "^6.1.3",
"socket.io": "^4.8.3",
"spawn-args": "^0.2.0",
"styled_string": "0.0.1",
"tap-parser": "^18.3.0"
},
"files": [
"lib",
"public",
"README.md",
"testem.js",
"assets",
"package.json",
"views"
],
"scripts": {
"test": "mocha tests/*_tests.js tests/**/*_tests.js",
"test:verbose": "TESTEM_VERBOSE=1 mocha tests/*_tests.js tests/**/*_tests.js",
"cover": "cover run ./node_modules/.bin/_mocha tests/*_tests.js tests/**/*_tests.js; cover report html; open cover_html/index.html",
"integration": "node ./bin/run-integration.js",
"ci:safari-smoke": "node ./scripts/safari-ci-smoke.js",
"browser-tests": "cd examples/saucelabs/ && ../../testem.js ci -d",
"lint": "eslint ."
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"chai": "^6.2.2",
"chai-files": "^1.4.0",
"chai-shallow-deep-equal": "^1.4.6",
"cheerio": "^1.2.0",
"dirty-chai": "^3.0.0",
"esbuild": "^0.27.4",
"esbuild-plugins-node-modules-polyfill": "^1.8.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-expect": "^4.0.0",
"eslint-plugin-mocha": "^11.2.0",
"fresh-tape": "^5.9.1",
"mocha": "^11.7.5",
"saucie": "^4.0.1",
"sinon": "^21.0.3",
"sinon-chai": "^4.0.1",
"socket.io-client": "^4.8.3"
},
"overrides": {
"mocha": {
"diff": "^8.0.3",
"minimatch": "^9.0.7",
"serialize-javascript": "^7.0.5"
}
},
"bin": {
"testem": "./testem.js"
},
"main": "./lib/api.js"
}