-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
{
"name": "@endo/immutable-arraybuffer",
"version": "0.2.3",
"private": true,
"description": "Immutable ArrayBuffer",
"keywords": [],
"author": "Endo contributors",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/endo/tree/master/packages/immutable-arraybuffer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/endo.git",
"directory": "packages/immutable-arraybuffer"
},
"bugs": {
"url": "https://github.com/endojs/endo/issues"
},
"type": "module",
"main": "./index.js",
"module": "./index.js",
"exports": {
".": "./index.js",
"./shim.js": "./shim.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "exit 0",
"lint": "yarn lint:types && yarn lint:eslint",
"lint-check": "yarn lint",
"lint-fix": "yarn lint:eslint --fix && yarn lint:types",
"lint:eslint": "eslint '**/*.js'",
"lint:types": "tsc",
"postpack": "git clean -fX \"*.d.ts*\" \"*.d.cts*\" \"*.d.mts*\" \"*.tsbuildinfo\"",
"prepack": "tsc --build tsconfig.build.json",
"test": "ava",
"test:c8": "c8 $C8_OPTIONS ava --config=ava-nesm.config.js",
"test:xs": "exit 0"
},
"devDependencies": {
"ava": "^6.1.3",
"c8": "^7.14.0",
"tsd": "^0.31.2",
"typescript": "~5.6.3"
},
"files": [
"./*.d.ts",
"./*.js",
"./*.map",
"LICENSE*",
"SECURITY*",
"dist",
"lib",
"src",
"tools"
],
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"extends": [
"plugin:@endo/internal"
]
},
"ava": {
"files": [
"test/**/*.test.*"
],
"timeout": "2m"
}
}