-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 1.91 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "tweetnacl-ts",
"version": "1.0.3",
"description": "Port of TweetNaCl cryptographic library to TypeScript (and ES6)",
"main": "nacl.js",
"module": "es/nacl.js",
"typings": "nacl.d.ts",
"browser": {
"./server/convert.js": "./client/convert.js",
"./es/server/convert.js": "./es/client/convert.js",
"./server/random.js": "./client/random.js",
"./es/server/random.js": "./es/client/random.js"
},
"scripts": {
"compile": "npm run compile-es && npm run compile-js",
"clean": "npm run clean-es && npm run clean-js",
"compile-es": "tsc --outDir es --module es6",
"clean-es": "rm -rf es",
"compile-js": "tsc --outDir .",
"clean-js": "rm -rf nacl *.d.ts *.js *.js.map",
"prepublish": "npm run compile",
"compile-test": "browserify -d test/index.ts -p [ tsify --noImplicitAny ] -o test-out.js",
"clean-test": "rm -f test-out.js",
"test": "testem ci",
"test-node": "mocha -r ts-node/register test/index.ts -R spec",
"test-dev": "testem"
},
"repository": {
"type": "git",
"url": "git+https://github.com/katyo/tweetnacl-ts.git"
},
"keywords": [
"crypto",
"cryptography",
"curve25519",
"ed25519",
"encrypt",
"hash",
"key",
"nacl",
"tweetnacl",
"poly1305",
"public",
"salsa20",
"signatures",
"sign",
"secret",
"box",
"secretbox",
"sealedbox",
"hmac",
"sha2",
"sha512",
"sha256",
"blake",
"blake2s",
"blake2b"
],
"author": "K. <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/katyo/tweetnacl-ts/issues"
},
"homepage": "https://github.com/katyo/tweetnacl-ts#readme",
"devDependencies": {
"@types/mocha": "^5",
"@types/node": "^8",
"browserify": "^16",
"mocha": "^5",
"testem": "^2",
"ts-node": "^7",
"tsify": "^4",
"typescript": "^3"
},
"dependencies": {
"tslib": "^1"
}
}