forked from greymass/ual-anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.6 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
69
70
{
"name": "ual-anchor",
"version": "1.1.4",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Greymass",
"url": "https://greymass.com"
},
"contributors": [
"Aaron Cox",
"Johan Nordberg"
],
"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.5.2",
"anchor-link": "^3.3.8",
"anchor-link-browser-transport": "^3.2.5",
"elliptic": "6.5.4",
"eosio-signing-request": "^2.3.1",
"eosjs": "^21.0.3",
"universal-authenticator-library": "0.3.0"
},
"resolutions": {
"cache-base": "4.0.0",
"@greymass/eosio": "0.5.4"
},
"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": "^4.0.1",
"@types/elliptic": "^6.4.10",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"tslint": "^6.1.3",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/greymass/ual-anchor"
}
}