forked from educastellano/bidirectional-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 896 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": "@paar-it-gmbh/bidirectional-map",
"version": "3.0.0",
"description": "Create 'key/value' collections of one-to-one correspondence.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "tape test.js"
},
"files": [
"package.json",
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"README",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:PAAR-IT-GmbH/bidirectional-map.git"
},
"author": "Eduard Castellano",
"license": "ISC",
"bugs": {
"url": "https://github.com/educastellano/bidirectional-map/issues"
},
"homepage": "https://github.com/educastellano/bidirectional-map#readme",
"devDependencies": {
"tape": "^5.0.1",
"typescript": "^4.1.2"
},
"publishConfig": {
"access": "public"
},
"types": "./dist/index.d.ts"
}