-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "ual-plainjs-renderer",
"version": "0.3.0",
"author": {
"name": "block.one",
"url": "https://block.one/"
},
"collaborators": [
"Chris Allnutt",
"Mike Manfredi"
],
"repository": {
"type": "git",
"url": "[email protected]:EOSIO/ual-plainjs-renderer.git"
},
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"prepare": "yarn build"
},
"dependencies": {
"universal-authenticator-library": "0.3.0"
},
"devDependencies": {
"@blockone/eslint-config-blockone": "^3.0.0",
"@types/jest": "^25.1.4",
"@types/jsdom": "^16.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-localstorage-mock": "^2.4.0",
"jsdom": "^16.2.1",
"promise": "^8.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
}
}