-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "brave-crypto",
"version": "1.0.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": {
"@types/node": "20.14.8",
"browserify": "16.5.2",
"jsdoc-to-markdown": "7.1.1",
"standard": "16.0.4",
"tape": "4.17.0",
"typescript": "5.5.2"
},
"scripts": {
"build": "tsc && browserify index.js -o browser/crypto.js",
"lint": "standard",
"lint-fix": "standard --fix",
"jsdoc": "jsdoc2md index.js > docs/api.md",
"test": "tape test/**/*.js",
"compile": "tsc"
},
"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"
},
"resolutions": {
"hosted-git-info": "3.0.8",
"underscore": "1.12.1"
},
"types": "index.d.ts"
}