-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.07 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": "nanocurrency-web",
"version": "1.4.3",
"description": "Toolkit for Nano cryptocurrency client side offline integrations",
"author": "Miro Metsänheimo <miro@metsanheimo.fi>",
"license": "MIT",
"homepage": "https://github.com/numsu/nanocurrency-web-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/numsu/nanocurrency-web-js.git"
},
"bugs": {
"url": "https://github.com/numsu/nanocurrency-web-js/issues"
},
"keywords": [
"nano",
"currency",
"mnemonic",
"crypto",
"wallet",
"block",
"sign",
"encrypt",
"decrypt"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"unpkg": "dist/index.min.js",
"scripts": {
"build": "rm -rf dist && tsc && npm run build:webpack",
"build:webpack": "webpack",
"test": "mocha --reporter spec"
},
"dependencies": {
"bignumber.js": "9.0.2",
"blakejs": "1.2.1",
"byte-base64": "1.1.0",
"crypto-js": "3.1.9-1"
},
"devDependencies": {
"chai": "4.3.6",
"mocha": "9.2.2",
"ts-loader": "9.2.8",
"typescript": "4.6.3",
"webpack": "5.72.0",
"webpack-cli": "4.9.2"
}
}