forked from EOSIO/ual-scatter
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "wombat-ual",
"version": "1.1.0",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Spielworks GmbH",
"url": "https://www.wombat.app/"
},
"contributors": [
"Jan Schmutz",
"Moritz do Rio Schulze"
],
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"prepare": "yarn build",
"test": "jest"
},
"dependencies": {
"elliptic": "6.5.2",
"eosjs": "22.1.0",
"universal-authenticator-library": "0.3.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": {
"@types/elliptic": "^6.4.12",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.42",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/wombat-tech/wombat-ual"
}
}