-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "cryptus",
"version": "2.0.0",
"description": "An ultra thin crypto wrapper for encrypting and decrypting utf-8 strings",
"main": "index.js",
"scripts": {
"coverage": "nyc --report html --reporter lcov --reporter text-summary node test",
"lint": "eslint .",
"test": "node test",
"examples": "node ./examples/callback-example.js && node ./examples/synchronous-example.js && node ./examples/promise-example.js && node ./examples/async-await-example.js"
},
"bin": {
"create-key": "./bin/create-key.js",
"encrypt": "./bin/encrypt.js",
"decrypt": "./bin/decrypt.js"
},
"keywords": [
"cryptopgraphy",
"crypto",
"encrypt",
"decrypt",
"encryption",
"decryption",
"synchronous",
"asynchronous",
"callback",
"promise",
"async",
"sync",
"await"
],
"author": "Stephen Cresswell",
"license": "ISC",
"devDependencies": {
"async": "^3.2.0",
"eslint": "^7.18.0",
"husky": "^4.3.8",
"nyc": "^15.1.0",
"p-limit": "^3.1.0",
"zunit": "^3.0.2"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/cryptus.git"
},
"bugs": {
"url": "https://github.com/acuminous/cryptus/issues"
},
"homepage": "https://acuminous.github.io/cryptus/",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test && npm run examples"
}
}
}