-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 946 Bytes
/
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
{
"name": "ordered-fast-lookup-map",
"version": "2.0.1",
"description": "Map with order functionality, providing fast look ups and ordering in the same time.",
"main": "./index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build:dev": "tsc --watch",
"build:publish": "tsc -p ./tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sp3c1/ordered-fast-lookup-map.git"
},
"keywords": [
"map",
"list",
"ordered",
"associative",
"lookup",
"vector"
],
"author": "Bartlomiej Specjalny",
"license": "MIT",
"bugs": {
"url": "https://github.com/sp3c1/ordered-fast-lookup-map/issues"
},
"homepage": "https://github.com/sp3c1/ordered-fast-lookup-map#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}