forked from brave/crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
49
50
51
{
"name": "brave-crypto",
"version": "0.1.0",
"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.2.0",
"coveralls": "^3.0.0",
"flow-bin": "^0.39.0",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^4.0.1",
"nsp": "^3.2.1",
"standard": "^11.0.1",
"tape": "^4.9.0"
},
"scripts": {
"build": "browserify ./index.js -o browser/crypto.js",
"check": "nsp check",
"coverage": "istanbul cover tape test/**/*.js --report lcovonly -- -R spec",
"lint": "standard",
"jsdoc": "jsdoc2md index.js > docs/api.md",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"test": "tape test/**/*.js"
},
"standard": {
"ignore": [
"test/indexTest.js"
]
},
"author": "yan <[email protected]",
"repository": {
"type": "git",
"url": "git://github.com/brave/crypto.git"
},
"license": "MPL-2.0",
"dependencies": {
"bip39": "^2.5.0",
"niceware": "^1.0.5",
"tweetnacl": "^1.0.0"
}
}