forked from EOSIO/ual-lynx
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.3 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
{
"name": "ual-lynx",
"version": "0.1.0",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "Block.one",
"url": "https://block.one"
},
"contributors": [
"Eddie Sheffield",
"Nasser Abouelazm",
"Chris Allnutt",
"Randy Torres",
"Jeffrey Smith II",
"Tara Tritt"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"clean-build": "rm -rf dist && yarn build",
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "jest"
},
"dependencies": {
"eos-lynx": "1.1.3",
"eosjs": "^20.0.0",
"universal-authenticator-library": "^0.1.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": "^1.0.0",
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"typescript": "^3.2.2",
"window": "^4.2.5"
}
}