forked from MetaMask/rpc-cap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"name": "@xops.net/rpc-cap",
"version": "0.0.0-development",
"description": "A module for adding an object-capabilities system to any JSON-RPC API as middleware for json-rpc-engine",
"main": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:typescript",
"build:typescript": "rm -rf build && tsc",
"build:types": "./scripts/copyDistTypes.sh",
"build:watch": "npm run build && tsc -w",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js --fix .",
"prepublishOnly": "npm run build",
"test": "npm run build:typescript && node test",
"test:coverage": "nyc node test"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/xops/rpc-cap.git"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@metamask/eslint-config": "^1.0.0",
"@types/node": "^12.12.62",
"@types/uuid": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"nyc": "^15.0.0",
"tape": "^4.9.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@xops.net/metamask-controllers-base": "^3.2.4",
"eth-rpc-errors": "^3.0.0",
"fast-deep-equal": "^2.0.1",
"is-subset": "^0.1.1",
"json-rpc-engine": "^5.3.0",
"uuid": "^3.3.2"
},
"files": [
"build/"
]
}