-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "tonweb-mnemonic",
"version": "1.0.1",
"description": "Mnemonic code for generating deterministic keys for TON (The Open Network)",
"main": "dist/node",
"browser": "dist/web",
"types": "dist/types",
"scripts": {
"build": "rm -rf ./dist && webpack build && npm run build:types",
"build:ci": "NODE_ENV=production npm run build",
"build:node": "webpack build --config-name node",
"build:types": "tsc -p ./tsconfig.lib.json",
"build:web": "webpack build --config-name web",
"prepublishOnly": "npm run build:ci",
"test": "jest",
"test:coverage": "jest --coverage",
"test:manual": "browser-sync start --server --index ./test/index.html --files ./dist"
},
"keywords": [
"BIP39",
"Blockchain",
"Mnemonic",
"TON",
"The Open Network"
],
"contributors": [
{
"name": "rulon",
"url": "https://github.com/EmelyanenkoK"
},
{
"name": "tolyayanot",
"url": "https://github.com/tolya-yanot"
},
{
"name": "Slava Fomin II",
"email": "slava@fomin.io",
"url": "https://github.com/slavafomin"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/toncenter/tonweb-mnemonic/issues"
},
"homepage": "https://github.com/toncenter/tonweb-mnemonic#readme",
"engines": {
"node": ">=15"
},
"files": [
"dist/"
],
"dependencies": {
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.8",
"@types/webpack": "^5.28.0",
"babel-loader": "^8.2.3",
"browser-sync": "^2.27.7",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}