-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.11 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
{
"name": "mipher",
"version": "1.1.5",
"author": "Marco Paland",
"license": "MIT",
"description": "Mobile Cipher crypto library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./src",
"pretest": "tsc -p ./test",
"test": "mocha ./test/out/test/**/*_test.js",
"dev": "lite-server"
},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"typescript": "latest",
"lite-server": "latest",
"ts-node": "^6.0.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"@types/node": "9.6.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mpaland/mipher.git"
},
"keywords": [
"Crypto",
"Typescript",
"AES",
"Serpent",
"Chacha20",
"Curve25519",
"Ed25519",
"SHA-1",
"SHA.256",
"SHA-512",
"SHA-3",
"Keccak",
"SHAKE",
"HMAC",
"PBKDF2",
"UUID",
"Fortuna"
],
"bugs": {
"url": "https://github.com/mpaland/mipher/issues"
},
"homepage": "https://github.com/mpaland/mipher#readme"
}