-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 967 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 967 Bytes
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
{
"name": "miniLockLib",
"description": "Do miniLock encryption operations on a web page of your own.",
"version": "0.0.0",
"license": "Unlicense",
"repository": "git+https://github.com/45678/miniLockLib.git",
"dependencies": {
"base-58": "0.0.x",
"blake2s-js": "1.0.x",
"entropizer": "0.1.x",
"nacl-stream": "0.3.x",
"scrypt-async": "1.2.x",
"tweetnacl": "0.13.x"
},
"devDependencies": {
"browserify": "13.0.x",
"coffee-script": "1.10.x",
"docco": "^0.7.0",
"tape": "4.4.x",
"http-server": "^0.9.0",
"tape": "2.14.x",
"wr": "1.3.x"
},
"scripts": {
"start": "make; wr 'make' library/*.coffee tests/*.coffee website/*.coffee website/*.jst",
"test": "npm run window.tests; npm run node.tests",
"node.tests": "make; tape tests.compiled/*Tests.js",
"window.tests": "make; open `cat .window_tests_address`",
"webserver": "http-server website -a localhost -p 45678 --silent"
}
}