forked from AndrewKishino/sotez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.17 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
{
"name": "sotez",
"version": "0.3.2",
"description": "Tezos JavaScript API",
"main": "index.js",
"browser": "dist/tez.browser.js",
"scripts": {
"test": "jest",
"flow": "flow",
"flow:check": "flow check",
"flow:deps": "flow-typed install",
"build": "npm run build:browser && npm run build:node",
"build:browser": "webpack --config webpack.browser.config.js --progress",
"build:node": "webpack --config webpack.node.config.js --progress",
"docs": "documentation build src/index.js --config documentation.yml --markdown-toc false -f md -o docs/documentation.md"
},
"keywords": [
"Tezos",
"JavaScript",
"API"
],
"author": "Andrew Kishino",
"license": "MIT",
"dependencies": {
"@ledgerhq/hw-transport": "^4.48.0",
"@ledgerhq/hw-transport-node-hid": "^4.48.0",
"@ledgerhq/hw-transport-u2f": "^4.48.0",
"bignumber.js": "^8.0.1",
"bip39": "^3.0.0",
"blake2b": "^2.1.3",
"bs58check": "^2.1.2",
"buffer": "^5.2.1",
"detect-node": "^2.0.4",
"libsodium-wrappers": "^0.7.3",
"pbkdf2": "^3.0.16",
"xhr2": "^0.1.4"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime": "^7.4.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"documentation": "^9.1.1",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.14.0",
"flow-bin": "^0.96.0",
"flow-remove-types": "^1.2.3",
"flow-typed": "^2.5.1",
"jest": "^24.3.1",
"remove-flow-types-loader": "^1.1.0",
"terser-webpack-plugin": "^1.2.2",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewKishino/sotez.git"
},
"bugs": {
"url": "https://github.com/AndrewKishino/sotez/issues"
},
"homepage": "https://github.com/AndrewKishino/sotez#readme"
}