-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "@metamask/object-multiplex",
"version": "2.1.0",
"description": "Simple stream multiplexing for objectMode.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/object-multiplex.git"
},
"engines": {
"node": "^16.20 || ^18.16 || >=20"
},
"files": [
"dist/"
],
"scripts": {
"setup": "yarn install && yarn allow-scripts",
"build:clean": "rimraf dist && yarn build",
"build": "tsc --project .",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"test": "yarn build && node test",
"prepublishOnly": "yarn build:clean && yarn test"
},
"author": "",
"license": "ISC",
"dependencies": {
"once": "^1.4.0",
"readable-stream": "^3.6.2"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.0.0",
"@metamask/auto-changelog": "^2.3.0",
"@metamask/eslint-config": "^6.0.0",
"@metamask/eslint-config-nodejs": "^6.0.0",
"@metamask/eslint-config-typescript": "^6.0.0",
"@types/node": "^16",
"@types/once": "^1.4.0",
"@types/readable-stream": "4.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"tape": "^4.17.0",
"typescript": "~4.8.4"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
}
}