-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "tez-baker-js",
"version": "0.0.1",
"description": "Tezos JavaScript Baker",
"main": "index.js",
"browser": "dist/web/index.js",
"scripts": {
"test": "jest",
"lint": "tsc -p ./tslint.json",
"build": "tsc && webpack --config webpack.config.js --progress"
},
"keywords": [
"Tezos",
"JavaScript",
"Baker"
],
"author": "Andrew Kishino",
"license": "MIT",
"dependencies": {
"detect-node": "^2.0.4",
"libsodium-wrappers": "^0.7.6",
"sotez": "^0.6.0"
},
"devDependencies": {
"@types/libsodium-wrappers": "^0.7.7",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"terser-webpack-plugin": "^2.3.4",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewKishino/TezBakerJS.git"
},
"bugs": {
"url": "https://github.com/AndrewKishino/TezBakerJS/issues"
},
"homepage": "https://github.com/AndrewKishino/TezBakerJS#readme"
}