-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "json-cipher-value",
"version": "3.0.1",
"type": "module",
"description": "Recursively (de)ciphering values of object retaining their types.",
"bin": {
"cipher-json": "./bin/cli.js"
},
"exports": "./index.js",
"imports" : {
"#lib" : "./lib/index.js"
},
"scripts": {
"gendoc": "markdown-toc -i README.md &&cd doc/jsdoc2md && jsdoc2md -t api.hbs > ../api.md",
"lint": "standard",
"test": "npm run lint && mocha"
},
"homepage": "https://github.com/nbarikipoulos/json-cipher-value#readme",
"author": "Nicolas Barriquand <nicolas.barriquand@outlook.fr>",
"license": "MIT",
"keywords": [
"object",
"json",
"ciphering",
"deciphering",
"aes256"
],
"dependencies": {
"vinyl-fs": "^4.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"jsdoc-to-markdown": "^8.0.0",
"markdown-toc": "^1.2.0",
"mocha": "^10.2.0",
"rimraf": "^5.0.1",
"standard": "17.1.0"
},
"files": [
"index.js",
"/lib",
"/cli",
"/doc/api.md"
],
"repository": {
"type": "git",
"url": "https://github.com/nbarikipoulos/json-cipher-value.git"
},
"bugs": {
"url": "https://github.com/nbarikipoulos/json-cipher-value/issues"
},
"engines": {
"node": ">=16.0.0"
}
}