-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "ordered-collections",
"version": "1.0.0",
"description": "persistent ordered map and set with a focus on typescript integration and performance",
"license": "MIT",
"author": {
"name": "Kári Frederiksen",
"url": "https://github.com/karifrederiksen"
},
"repository": {
"type": "git",
"url": "https://github.com/karifrederiksen/ordered-collections"
},
"bugs": {
"url": "https://github.com/karifrederiksen/ordered-collections/issues"
},
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "mocha -r ./ts-node-test.js -r mocha-clean --watch-extensions ts,tsx \"src/**/*.test.ts\" --use_strict ",
"typecheck": "tsc --project tsconfig.json --noEmit",
"benchmark": "node -r ./ts-node-test.js ./benchmarks/ordmap.ts"
},
"devDependencies": {
"@types/benchmark": "2.1.0",
"@types/chai": "4.2.16",
"@types/mocha": "5.2.5",
"@types/node": "14.14.37",
"benchmark": "2.1.4",
"chai": "4.3.4",
"immutable": "4.0.0-rc.12",
"jsverify": "0.8.4",
"mocha": "8.3.2",
"mocha-clean": "1.0.0",
"rollup": "2.45.2",
"rollup-plugin-typescript2": "0.30.0",
"ts-node": "9.1.1",
"tslib": "2.2.0",
"typescript": "4.2.4"
}
}