-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.67 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
{
"name": "@metamask/safe-event-emitter",
"version": "3.1.3",
"description": "An EventEmitter that isolates the emitter from errors in handlers",
"license": "ISC",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/safe-event-emitter.git"
},
"files": [
"dist",
"!*.test.*"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "ts-bridge --project tsconfig.build.json --clean",
"lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:dependencies --check && yarn lint:changelog",
"lint:changelog": "auto-changelog validate --formatter oxfmt",
"lint:constraints": "yarn constraints",
"lint:dependencies": "depcheck && yarn dedupe --check",
"lint:dependencies:fix": "depcheck && yarn dedupe",
"lint:eslint": "eslint .",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write && yarn lint:dependencies:fix && yarn lint:changelog --fix",
"lint:misc": "oxfmt --ignore-path .gitignore",
"test": "jest"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^5.1.0",
"@lavamoat/preinstall-always-fail": "^3.0.0",
"@metamask/auto-changelog": "^6.2.1",
"@metamask/eslint-config": "^15.0.0",
"@metamask/eslint-config-jest": "^15.0.0",
"@metamask/eslint-config-nodejs": "^15.0.0",
"@metamask/eslint-config-typescript": "^15.0.0",
"@ts-bridge/cli": "^0.6.4",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.21",
"depcheck": "^1.4.7",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.3.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-n": "^17.10.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"jest": "^26.4.2",
"oxfmt": "^0.64.0",
"ts-jest": "^26.4.0",
"typescript": "~5.3.3",
"typescript-eslint": "^8.48.1"
},
"engines": {
"node": ">=12.0.0"
},
"packageManager": "yarn@4.18.0+sha256.fb8b1d20be72a0b544a35bcec4c7ed0ff55a9b173c01f191b02ba164b2051db5",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail#3.0.0": false,
"eslint-plugin-import-x>unrs-resolver#1.12.2": false
}
}
}