Skip to content

Commit 25c4b72

Browse files
authored
Add files property to package.json (#17)
1 parent 1275c42 commit 25c4b72

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

package.json

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,24 @@
22
"name": "eth-rpc-errors",
33
"version": "2.1.0",
44
"description": "Ethereum RPC and Provider errors.",
5-
"main": "index.js",
5+
"license": "MIT",
6+
"author": "Erik Marks <[email protected]>",
67
"scripts": {
78
"build": "echo",
89
"test": "node test",
910
"test:coverage": "nyc tape test",
1011
"lint": "eslint . --ext js,json",
1112
"lint:fix": "eslint . --ext js,json --fix"
1213
},
13-
"repository": {
14-
"type": "git",
15-
"url": "git+https://github.com/MetaMask/eth-rpc-errors.git"
16-
},
17-
"keywords": [
18-
"rpc",
19-
"ethereum",
20-
"errors",
21-
"utility"
14+
"main": "index.js",
15+
"files": [
16+
"@types",
17+
"index.js",
18+
"src"
2219
],
23-
"author": "Erik Marks <[email protected]>",
24-
"license": "MIT",
25-
"bugs": {
26-
"url": "https://github.com/MetaMask/eth-rpc-errors/issues"
20+
"dependencies": {
21+
"fast-safe-stringify": "^2.0.6"
2722
},
28-
"homepage": "https://github.com/MetaMask/eth-rpc-errors#readme",
2923
"devDependencies": {
3024
"@metamask/eslint-config": "^2.1.1",
3125
"eslint": "6.8.0",
@@ -35,7 +29,18 @@
3529
"nyc": "^15.0.1",
3630
"tape": "^5.0.0"
3731
},
38-
"dependencies": {
39-
"fast-safe-stringify": "^2.0.6"
40-
}
32+
"bugs": {
33+
"url": "https://github.com/MetaMask/eth-rpc-errors/issues"
34+
},
35+
"homepage": "https://github.com/MetaMask/eth-rpc-errors#readme",
36+
"repository": {
37+
"type": "git",
38+
"url": "git+https://github.com/MetaMask/eth-rpc-errors.git"
39+
},
40+
"keywords": [
41+
"rpc",
42+
"ethereum",
43+
"errors",
44+
"utility"
45+
]
4146
}

0 commit comments

Comments
 (0)