-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.86 KB
/
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
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
{
"name": "radar-sdk-js",
"version": "4.4.8",
"description": "Web Javascript SDK for Radar, location infrastructure for mobile and web apps.",
"homepage": "https://radar.com",
"type": "module",
"module": "dist/radar.js",
"types": "dist/index.d.ts",
"style": "dist/radar.css",
"build": "rollup -c",
"prepublish": "npm run build",
"files": [
"dist",
"src",
"README.md",
"LICESNSE"
],
"scripts": {
"build": "rollup -c",
"check-latest-tag": "node ./scripts/check-latest-tag.cjs",
"check-beta-tag": "node ./scripts/check-beta-tag.cjs",
"bump-version": "node ./scripts/bump-version.cjs",
"test": "jest --collect-coverage --runInBand",
"test:watch": "jest --watch",
"demo": "npm run build && node ./demo/server.cjs",
"compile-site": "node ./scripts/compile-site.cjs",
"spell-check": "cspell **/*.md -c cspell.json",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.1",
"cspell": "^8.15.3",
"express": "^4.18.2",
"express-handlebars": "^7.0.7",
"handlebars": "^4.7.7",
"husky": "^9.1.6",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^15.2.10",
"maplibre-gl": "^4.3.2",
"mock-xmlhttprequest": "^8.2.0",
"nodemon": "^2.0.22",
"rollup": "^3.23.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@types/geojson": "^7946.0.10"
},
"peerDependencies": {
"maplibre-gl": "^2.4.0 || ^3.0.0 || ^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}