-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "deep-weak-map",
"version": "1.1.0",
"main": "lib/index.js",
"description": "WeakMap with an array of keys",
"license": "MIT",
"keywords": [
"map",
"weakmap",
"deepweakmap",
"many",
"multiple",
"keys",
"gc",
"weak",
"deep",
"nested",
"multiple"
],
"scripts": {
"build": "tsc",
"test": "xo && nyc ava --node-arguments='--expose-gc'",
"prepare": "husky install || true",
"prepublish": "yarn build"
},
"homepage": "https://github.com/futpib/deep-weak-map",
"types": "lib/index.d.ts",
"devDependencies": {
"@ava/typescript": "^2",
"@types/node": "^17.0.4",
"ava": "^3.4.0",
"coveralls": "^3.0.9",
"eslint-config-xo-overrides": "^1.4.0",
"husky": "^7.0.4",
"mem": "^8",
"nyc": "^15.0.0",
"xo": "^0.47.0"
},
"xo": {
"extends": [
"eslint-config-xo-overrides"
],
"ignore": "lib/*",
"plugins": [
"@typescript-eslint"
],
"rules": {
"new-cap": "off",
"unicorn/no-abusive-eslint-disable": "off",
"@typescript-eslint/object-curly-spacing": [
"error",
"always"
],
"@typescript-eslint/comma-dangle": [
"error",
"always-multiline"
],
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/ban-types": "off",
"unicorn/prefer-node-protocol": "off",
"unicorn/prefer-module": "off"
}
},
"ava": {
"verbose": true,
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": "tsc"
}
}
}