-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.55 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
68
{
"name": "ual-metamask",
"version": "1.0.1",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "EOS Argentina",
"url": "https://eosargentina.io"
},
"contributors": [
"Matias Romeo"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"clean-build": "rm -rf dist && yarn build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"prepublish": "yarn clean-build",
"test": "jest"
},
"dependencies": {
"@greymass/eosio": "^0.2.5",
"@metamask/detect-provider": "^1.2.0",
"elliptic": "6.5.2",
"eosjs": "^20.0.3",
"eosjs-api": "^7.0.4",
"ethers": "^5.0.32",
"universal-authenticator-library": "0.3.0"
},
"resolutions": {
"cache-base": "4.0.0"
},
"jest": {
"verbose": false,
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/dist"
],
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/runtime": "^7.2.0",
"@blockone/tslint-config-blockone": "^3.0.0",
"@types/elliptic": "^6.4.10",
"@types/jest": "^24.0.15",
"@types/node": "^12.12.20",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/EOSArgentina/ual-metamask"
}
}