This repository has been archived by the owner on Jan 3, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
63 lines (63 loc) · 1.99 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
{
"name": "rpc-cap",
"version": "4.0.0",
"description": "A module for adding an object-capabilities system to any JSON-RPC API as middleware for json-rpc-engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "yarn build:typescript && yarn build:types",
"build:typescript": "rm -rf dist && tsc",
"build:types": "./scripts/copyDistTypes.sh",
"build:watch": "yarn build && tsc -w",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' --single-quote --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"prepublishOnly": "yarn build",
"test": "yarn build:typescript && node test",
"test:nobuild": "node test",
"coverage": "nyc node test",
"coverage:html": "nyc --reporter=html node test"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/rpc-cap.git"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@metamask/eslint-config": "^6.0.0",
"@metamask/eslint-config-nodejs": "^6.0.0",
"@metamask/eslint-config-typescript": "^6.0.0",
"@types/node": "^12.0.7",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"clone": "^2.1.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"nyc": "^15.0.0",
"prettier": "^2.2.1",
"tape": "^4.9.2",
"typescript": "^4.1.2"
},
"dependencies": {
"@metamask/controllers": "^5.0.0",
"eth-rpc-errors": "^4.0.2",
"fast-deep-equal": "^2.0.1",
"is-subset": "^0.1.1",
"json-rpc-engine": "^6.1.0",
"uuid": "^3.3.2"
},
"files": [
"dist/"
]
}