-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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-eosio-reference-authenticator",
"version": "0.3.0",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "block.one",
"url": "https://block.one"
},
"contributors": [
"Nasser Abouelazm",
"Chris Allnutt",
"Randy Torres",
"Jeffrey Smith II",
"Tara Tritt",
"Mike Manfredi"
],
"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": {
"bs58": "4.0.1",
"eosjs": "20.0.0",
"eosjs-ios-browser-signature-provider-interface": "0.1.1",
"eosjs-signature-provider-interface": "0.1.2",
"eosjs-window-message-signature-provider-interface": "0.1.3",
"text-encoding": "0.7.0",
"universal-authenticator-library": "0.3.0",
"uuid": "3.3.2"
},
"jest": {
"verbose": false,
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(tsx?)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/dist"
],
"testRegex": "(/src/.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "jsdom"
},
"devDependencies": {
"@blockone/tslint-config-blockone": "^4.0.0",
"@types/jest": "^23.3.10",
"@types/node": "^12.0.1",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOSIO/ual-eosio-reference-authenticator.git"
}
}