This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·78 lines (78 loc) · 2.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@logosnetwork/logos-webwallet-sdk",
"version": "0.3.10",
"description": "Create Logos wallets with or without a full Logos node",
"keywords": [
"Logos",
"WebWallet",
"wallet",
"cryptocurrency",
"light",
"lightwallet"
],
"homepage": "https://github.com/LogosNetwork/logos-webwallet-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/LogosNetwork/logos-webwallet-sdk.git"
},
"main": "./dist/index",
"scripts": {
"test": "npm run lint && npm run unit:test",
"unit:test": "./node_modules/.bin/mocha --reporter spec",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"build": "npm run lint && tsc --build",
"docs": "typedoc --readme ./README.md --out docs ./src",
"prepublishOnly": "NODE_ENV=production npm run build && npm run test"
},
"author": "Tyler Storm <[email protected]>",
"contributors": [
"Tyler Storm <[email protected]> (https://logos.network)",
"Chris Cohoat <[email protected]> (https://cohoat.pizza/)",
"Jaime Herrero",
"Mart Roosmaa <[email protected]>",
"Gray Olson <[email protected]> (https://www.grayolson.me/)",
"Ilya Apasov"
],
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"@types/node": "^12.7.5",
"@types/pbkdf2": "^3.0.0",
"@types/ws": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"eslint": "^6.3.0",
"mocha": "^6.2.0",
"source-map-loader": "^0.2.4",
"standard": "^14.1.0",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.8",
"typedoc": "^0.15.0"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"@logosnetwork/logos-rpc-client": "^1.1.33",
"big-integer": "^1.6.44",
"core-js": "^3.2.1",
"isomorphic-ws": "^4.0.1",
"mqtt": "^3.0.0",
"pbkdf2": "^3.0.17",
"reconnecting-websocket": "^4.2.0",
"tweetnacl": "git+https://[email protected]/jaimehgb/tweetnacl-js.git#ef9ea5fd95c3ca98128877c58e40ef1a711421ef",
"ws": "^7.1.2"
},
"bugs": {
"url": "https://github.com/LogosNetwork/logos-webwallet-sdk/issues"
}
}