-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.8 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.8 KB
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
74
75
76
{
"name": "@endo/memoize",
"version": "1.2.1",
"description": "Safe function memoization",
"keywords": [],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/tree/master/packages/memoize#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git",
"directory": "packages/memoize"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"type": "module",
"main": "./index.js",
"module": "./index.js",
"unpkg": null,
"types": null,
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "exit 0",
"lint": "yarn lint:types && yarn lint:eslint",
"lint-fix": "eslint --fix .",
"lint:eslint": "eslint .",
"lint:types": "tsc",
"prepack": "git clean -fX -e node_modules/ && tsc --build tsconfig.build.json",
"postpack": "git clean -fX -e node_modules/",
"test": "ses-ava",
"test:c8": "c8 ${C8_OPTIONS:-} ses-ava"
},
"dependencies": {
"@endo/harden": "workspace:^"
},
"devDependencies": {
"@endo/init": "workspace:^",
"@endo/ses-ava": "workspace:^",
"ava": "catalog:dev",
"c8": "catalog:dev",
"eslint": "catalog:dev",
"typescript": "~5.9.2"
},
"files": [
"./*.d.ts",
"./*.js",
"./*.map",
"LICENSE*",
"SECURITY*",
"dist",
"lib",
"src",
"tools"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"plugin:@endo/internal"
]
},
"sesAvaConfigs": {
"lockdown": "../../ava-endo-lockdown.config.mjs",
"unsafe": "../../ava-endo-lockdown-unsafe.config.mjs",
"base": "../../ava-base.config.mjs",
"noop-harden": "../../ava-noop-harden.config.mjs"
},
"typeCoverage": {
"atLeast": 95.83
}
}