-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1017 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
{
"name": "nanomemotools",
"version": "0.1.8",
"description": "Cryptographically secure memos for every Nano block",
"main": "index.js",
"private": false,
"scripts": {
"test": "mocha --reporter spec --timeout 20000",
"doc": "jsdoc -d docs --configure jsconf.json index.js",
"browserify": "browserify index.js --s NanoMemoTools > dist/nanomemotools.js"
},
"repository": {
"type": "git",
"url": "https://github.com/somenano/NanoMemoTools.git"
},
"bugs": {
"url": "https://github.com/somenano/NanoMemoTools/issues"
},
"homepage": "https://nanomemo.cc",
"author": "SomeNano",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"blake2": "^4.0.2",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"nanocurrency": "^2.5.0",
"reconnecting-websocket": "^4.4.0",
"tweetnacl": "^1.0.3",
"tweetnacl-blake2b": "^1.0.1",
"ws": "^7.4.4"
},
"devDependencies": {
"jsdoc": "^3.6.6",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
}
}