-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
package.json
35 lines (35 loc) · 974 Bytes
/
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
{
"scripts": {
"dev": "npm run build -- --sourcemap=inline --watch",
"build": "esbuild js/*.ts --format=esm --bundle --outdir=geemap/static",
"typecheck": "tsc --noEmit",
"pretest": "npm run build",
"test": "karma start karma.conf.cjs --single-run --watch=false",
"test:watch": "karma start karma.conf.cjs"
},
"type": "module",
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@anywidget/types": "^0.1.9",
"@types/jasmine": "^5.1.4",
"@types/jasmine-expect": "^3.8.1",
"esbuild": "^0.23.0",
"jasmine": "^5.4.0",
"jasmine-core": "^5.4.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-spec-reporter": "^0.0.36",
"karma-webpack": "^5.0.1",
"puppeteer": "^23.5.3",
"puppeteer-core": "^23.5.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}