forked from brave/crypto
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 990 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
45
46
{
"name": "brave-crypto",
"version": "0.3.1",
"description": "Crypto utils for Brave Browser",
"keywords": [
"nacl",
"tweetnacl",
"crypto",
"cryptography",
"random",
"entropy",
"encryption"
],
"homepage": "http://www.github.com/brave/crypto",
"main": "index.js",
"devDependencies": {
"browserify": "^16.5.0",
"coveralls": "^3.0.9",
"jsdoc-to-markdown": "^6.0.1",
"standard": "^14.3.3",
"tape": "^4.9.0"
},
"scripts": {
"build": "browserify ./index.js -o browser/crypto.js",
"check": "npm audit",
"lint": "standard",
"jsdoc": "jsdoc2md index.js > docs/api.md",
"test": "tape test/**/*.js"
},
"standard": {
"ignore": [
"test/*.js"
]
},
"author": "yan <[email protected]",
"repository": {
"type": "git",
"url": "git://github.com/brave/crypto.git"
},
"license": "MPL-2.0",
"dependencies": {
"bip39": "^2.6.0",
"niceware": "^1.0.7",
"tweetnacl": "^1.0.3"
}
}