-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 991 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
38
39
40
41
42
43
44
{
"name": "@jaenster/weakrefmap",
"version": "0.2.2",
"description": "WeakRefMap, a weak map with access to the fields, and keys can be primitives",
"main": "bin/index.js",
"types": "bin/index.d.ts",
"scripts": {
"build": "tsc"
},
"files": [
"/bin"
],
"keywords": [
"weakref",
"map",
"weak-ref-map",
"weak-ref",
"weak-ref-map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jaenster/weakrefmap.git"
},
"author": "Jaenster",
"license": "MIT",
"dependencies": {
"map-ext": "^0.1.4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.0.2",
"ts-jest": "^27.0.2",
"ts-node": "^8.6.2",
"typescript": "^4.5.5"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js"]
}
}