-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 989 Bytes
/
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
{
"name": "nyzo-js",
"version": "1.0.0",
"description": "Toolkit for Nyzo cryptocurrency",
"author": "Marco Solis <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ThreeDotsTech/nyzo-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ThreeDotsTech/nyzo-js.git"
},
"bugs": {
"url": "https://github.com/ThreeDotsTech/nyzo-js/issues"
},
"keywords": [
"nyzo",
"currency",
"mnemonic",
"crypto",
"wallet"
],
"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": {
"blakejs": "1.1.0",
"crypto-js": "3.1.9-1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/node": "12.7.12",
"chai": "4.2.0",
"mocha": "6.2.1",
"ts-loader": "6.2.0",
"typescript": "3.6.3",
"webpack": "4.41.1",
"webpack-cli": "3.3.9"
}
}