-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
65 lines (65 loc) · 1.45 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
{
"name": "ual-scatter",
"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"
],
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"prepare": "yarn build",
"test": "jest"
},
"dependencies": {
"@scatterjs/core": "2.7.51",
"@scatterjs/eosjs2": "1.5.33",
"elliptic": "6.5.2",
"eosjs": "21.0.1-rc1",
"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": {
"@babel/runtime": "^7.8.7",
"@blockone/eslint-config-blockone": "^3.0.0",
"@types/elliptic": "^6.4.12",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/EOSIO/ual-scatter"
}
}