-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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": "@rizzzse/bimap",
"version": "1.2.1",
"description": "A simple and tiny bi-directional map that extends ES2015's Map.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.js",
"files": [
"dist"
],
"scripts": {
"build:esm": "esbuild src/index.ts --bundle --outfile=dist/index.esm.js --format=esm",
"build:cjs": "esbuild src/index.ts --bundle --outfile=dist/index.js --format=cjs",
"build:dts": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rizzzse/bimap.git"
},
"keywords": [
"map",
"bimap",
"bidirectional"
],
"author": "rizzzse <rizzzse@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rizzzse/bimap/issues"
},
"homepage": "https://github.com/rizzzse/bimap#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"emnorst": "^0.5.0",
"esbuild": "^0.14.5",
"esbuild-jest": "^0.5.0",
"jest": "^27.4.5",
"typescript": "^4.5.4"
}
}