Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
giswqs
GitHub Repository: giswqs/geemap
Path: blob/master/package.json
2313 views
1
{
2
"scripts": {
3
"dev": "npm run build -- --sourcemap=inline --watch",
4
"build": "esbuild js/*.ts --format=esm --bundle --outdir=geemap/static",
5
"typecheck": "tsc --noEmit",
6
"pretest": "npm run build",
7
"test": "karma start karma.conf.cjs --single-run --watch=false",
8
"test:watch": "karma start karma.conf.cjs"
9
},
10
"type": "module",
11
"dependencies": {
12
"lit": "^3.2.1"
13
},
14
"devDependencies": {
15
"@anywidget/types": "^0.1.9",
16
"@types/jasmine": "^5.1.4",
17
"@types/jasmine-expect": "^3.8.1",
18
"esbuild": "^0.25.0",
19
"jasmine": "^5.4.0",
20
"jasmine-core": "^5.4.0",
21
"jasmine-spec-reporter": "^7.0.0",
22
"karma": "^6.4.4",
23
"karma-chrome-launcher": "^3.2.0",
24
"karma-jasmine": "^5.1.0",
25
"karma-jasmine-html-reporter": "^2.1.0",
26
"karma-spec-reporter": "^0.0.36",
27
"karma-webpack": "^5.0.1",
28
"puppeteer": "^23.5.3",
29
"puppeteer-core": "^23.5.3",
30
"ts-loader": "^9.5.1",
31
"typescript": "^5.5.3",
32
"webpack": "^5.105.0",
33
"webpack-cli": "^5.1.4"
34
}
35
}
36