-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "@metamask/obs-store",
"version": "9.1.0",
"description": "`ObservableStore` is a synchronous in-memory store for a single value, that you can subscribe to updates for.",
"homepage": "https://github.com/MetaMask/obs-store#readme",
"bugs": {
"url": "https://github.com/MetaMask/obs-store/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/obs-store.git"
},
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"setup": "yarn install && yarn allow-scripts",
"build": "rimraf dist && tsc --project .",
"test": "yarn build && tape test/**/*.js",
"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",
"prepublishOnly": "yarn test"
},
"dependencies": {
"@metamask/safe-event-emitter": "^3.0.0",
"readable-stream": "^3.6.2"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^2.3.1",
"@metamask/auto-changelog": "^3.4.2",
"@metamask/eslint-config": "^7.0.1",
"@metamask/eslint-config-typescript": "^7.0.1",
"@types/node": "^14.18.63",
"@types/readable-stream": "4.0.0",
"@types/tape": "^4.13.4",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"prettier-plugin-packagejson": "^2.2.11",
"rimraf": "^3.0.2",
"tape": "^4.6.3",
"typescript": "^4.1.3"
},
"engines": {
"node": "^14.21 || ^16.20 || ^18.16 || >=20",
"yarn": "^1.22.22"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
},
"packageManager": "[email protected]"
}