-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 819 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 819 Bytes
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
{
"name": "@w-lfpup/jackrabbit",
"description": "A test runner without dependencies",
"version": "0.3.2",
"license": "BSD-3-Clause",
"workspaces": [
"core",
"nodejs",
"browser",
"webdriver",
"tests"
],
"bin": {
"jackrabbit": "nodejs/dist/mod.js",
"jackrabbit_webdriver": "webdriver/dist/mod.js"
},
"scripts": {
"prepare": "npm run build",
"build": "npm run --workspaces build",
"format": "npx prettier --write ./",
"test": "npx jackrabbit ./tests/dist/core/mod.js",
"test:browsers": "npx jackrabbit_webdriver ./browsers.json ./tests/dist/core/mod.js ./tests/dist/commands/mod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-lfpup/jackrabbit-js.git"
},
"devDependencies": {
"@types/node": "^22.5.5",
"prettier": "^3.3.1",
"typescript": "^5.4.5"
}
}