-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "shared-memory-datastructures",
"version": "0.1.9",
"description": "JavaScript Map implementation that uses a ShareableBuffer under the hood and can be passed to workers copy-free.",
"main": "dist/bundle.js",
"scripts": {
"build": "webpack",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pverscha/SharedMemoryDatastructures.git"
},
"keywords": [
"Map"
],
"author": "Pieter Verschaffelt",
"license": "MIT",
"bugs": {
"url": "https://github.com/pverscha/SharedMemoryDatastructures/issues"
},
"homepage": "https://github.com/pverscha/SharedMemoryDatastructures#readme",
"dependencies": {
"fnv-plus": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.12.13",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.1",
"babel-jest": "^26.0.1",
"benchmark": "^2.1.4",
"jest": "^26.6.3",
"ts-loader": "^7.0.4",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}