-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.95 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.95 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@endo/marshal",
"version": "1.9.1",
"description": "marshal: encoding and deconding of Passable subgraphs",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./tools/marshal-test-data.js": "./tools/marshal-test-data.js",
"./tools/prepare-unicode-code-point-order.js": "./tools/prepare-unicode-code-point-order.js",
"./tools/prepare-utf16-code-unit-order.js": "./tools/prepare-utf16-code-unit-order.js",
"./tools/prepare-error-if-order-choice-matters.js": "./tools/prepare-error-if-order-choice-matters.js",
"./package.json": "./package.json"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "exit 0",
"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",
"test:xs": "exit 0",
"pretty-fix": "prettier --write '**/*.js'",
"pretty-check": "prettier --check '**/*.js'",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:types": "tsc",
"lint:eslint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git",
"directory": "packages/marshal"
},
"keywords": [
"marshal"
],
"author": "Endo contributors",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"homepage": "https://github.com/endojs/endo#readme",
"dependencies": {
"@endo/common": "workspace:^",
"@endo/env-options": "workspace:^",
"@endo/errors": "workspace:^",
"@endo/eventual-send": "workspace:^",
"@endo/harden": "workspace:^",
"@endo/nat": "workspace:^",
"@endo/pass-style": "workspace:^"
},
"devDependencies": {
"@endo/init": "workspace:^",
"@endo/lockdown": "workspace:^",
"@endo/ses-ava": "workspace:^",
"@fast-check/ava": "catalog:dev",
"ava": "catalog:dev",
"babel-eslint": "^10.1.0",
"c8": "catalog:dev",
"eslint": "catalog:dev",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"ses": "workspace:^",
"tsd": "^0.31.2",
"typescript": "~5.9.2"
},
"files": [
"./*.d.ts",
"./*.js",
"./*.map",
"LICENSE*",
"SECURITY*",
"dist",
"lib",
"src",
"tools"
],
"eslintConfig": {
"extends": [
"plugin:@endo/internal"
]
},
"publishConfig": {
"access": "public"
},
"ava": {
"require": [
"@endo/ses-ava/prepare-endo-config.js"
],
"files": [
"test/**/*.test.*"
],
"timeout": "2m"
},
"sesAvaConfigs": {
"lockdown": "../../ava-endo-lockdown.config.mjs",
"unsafe": "../../ava-endo-lockdown-unsafe.config.mjs",
"endo": "../../ava-endo-shims-only.config.mjs"
},
"typeCoverage": {
"atLeast": 85.3
}
}