-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "@iov/gdrive-custodian",
"version": "1.4.0",
"description": "This package safely stores a mnemonic used for transaction signing on a user's GDrive.",
"main": "lib/index.js",
"files": [
"lib/"
],
"types": "lib/index.d.ts",
"scripts": {
"build": "webpack",
"deploy": "yarn build && yarn publish",
"test": "jest",
"build-and-test": "yarn build && yarn test"
},
"author": "IOV SAS <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/iov-one/gmail-signer"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@cosmjs/launchpad": "^0.25.5",
"@cosmjs/stargate": "^0.25.5",
"@types/bip39": "^3.0.0",
"@types/jest": "^26.0.20",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.22.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"bip39": "^3.0.3",
"cheerio": "^1.0.0-rc.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"html-loader": "^1.3.1",
"jest": "^26.6.3",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"prettier": "^2.2.1",
"regenerator-runtime": "^0.13.7",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"uuid": "^8.3.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@cosmjs/amino": "^0.25.5",
"@cosmjs/encoding": "^0.25.5",
"@cosmjs/proto-signing": "^0.25.5"
}
}