-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 851 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
{
"name": "bim",
"version": "1.3.3",
"description": "A bidirectional map based on the ES6 Map & WeakMap objects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --no-cache",
"lint": "eslint './src/**/*.ts'",
"build": "rm -rf dist && tsc",
"release": "np --yolo --no-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/inker/bim"
},
"keywords": [
"bimap",
"bijection",
"bidirectional",
"map",
"weakmap"
],
"author": "Anton Veselyev <[email protected]> (https://github.com/inker)",
"license": "ISC",
"devDependencies": {
"@inker/eslint-config-typescript": "^10.0.1",
"@types/jest": "^26.0.24",
"eslint": "^7.31.0",
"jest": "^27.0.6",
"np": "^7.5.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
}
}