-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.08 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.08 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
{
"name": "bugmagnet",
"version": "2.0.0",
"scripts": {
"eslint": "eslint",
"lint": "eslint src test",
"build": "esbuild src/main/*.js --bundle --outdir=pack --platform=browser --format=esm --target=es2020",
"build:test": "esbuild test/*-spec.js --bundle --outdir=testem/compiled --platform=browser --format=esm --target=es2020 --sourcemap",
"pretest": "npm run lint && rm -rf testem/compiled",
"test": "testem ci -R dot",
"pretest-browser": "npm run pretest",
"test-browser": "testem -p 7357",
"pretest-chrome": "npm run pretest",
"test-chrome": "testem -l Chrome",
"sourcemap": "sourcemap-lookup",
"prepack-extension": "rm -rf pack && cp -R template pack",
"pack-extension": "esbuild src/main/*.js --bundle --outdir=pack --platform=browser --format=esm --target=es2020"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"esbuild": "^0.25.12",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jasmine": "^5.12.0",
"sourcemap-lookup": "0.0.3",
"testem": "^3.16.0"
},
"overrides": {
"consolidate": "^1.0.4"
}
}