-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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": "@onekeyhq/detect-provider",
"version": "1.2.0",
"description": "A tiny utility for detecting the OneKey Ethereum provider, or any EIP 1193-compliant provider.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"pretest": "yarn build",
"test": "node test/*",
"lint": "eslint . --ext ts,js,json",
"lint:fix": "yarn lint --fix",
"build": "./build.sh",
"prepare": "yarn build"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OneKeyHQ/detect-provider.git"
},
"author": "Erik Marks <[email protected]>",
"license": "ISC",
"private": false,
"keywords": [
"ethereum",
"provider",
"web3"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"browserify": "^16.5.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-node": "^11.1.0",
"sinon": "^9.0.2",
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"typescript": "^4.0.3"
},
"dependencies": {}
}