-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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
{
"name": "wasm-marker-clusterer",
"author": "Stefan Battiston <stefan.battiston@gmail.com>",
"description": "A WebAssembly alternative to the popular MarkerClustererPlus library for Google Maps",
"version": "1.1.1",
"license": "LGPL-3.0-only",
"keywords": [
"wasm",
"webassembly",
"google maps",
"marker-clusterer-plus",
"clustering"
],
"files": [
"dist/index*",
"dist/interfaces.d.ts",
"dist/worker*",
"pkg/webassembly_marker_clusterer.js",
"pkg/webassembly_marker_clusterer_bg.wasm"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/stefan2718/wasm-marker-clusterer"
},
"scripts": {
"start": "npm run wasm-pack && webpack-dev-server",
"start-ci": "npm run wasm-pack && webpack-dev-server --port 8080 & wait-on http://localhost:8080 --timeout 30000",
"build": "npm run wasm-pack && tsc",
"wasm-pack": "wasm-pack build --release --target bundler",
"prepare": "npm run build",
"prepublishOnly": "rimraf pkg/{[^w]*,.gitignore}",
"cypress": "cypress",
"test:js-lib": "cypress run",
"test:unit": "cargo test",
"test:wasm": "wasm-pack --verbose test --headless --firefox --release",
"test": "npm run test:unit && npm run test:wasm"
},
"devDependencies": {
"@types/node": "^12.7.12",
"copy-webpack-plugin": "^5.1.1",
"cypress": "^3.5.0",
"rimraf": "^2.6.3",
"ts-loader": "^6.2.1",
"typescript": "^3.6.3",
"wait-on": "^3.3.0",
"wasm-pack": "^0.9.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"worker-plugin": "^3.2.0"
},
"dependencies": {
"comlink": "^4.1.0"
}
}