-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.63 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
79
80
81
82
83
84
85
{
"name": "fs-json-store-encryption-adapter",
"version": "4.0.0",
"description": "Encryption adapter for the \"fs-json-store\" module",
"author": "Vladimir Yakovlev <dev.vladimir.y@gmail.com> (https://github.com/vladimiry)",
"license": "MIT",
"repository": "git@github.com:vladimiry/fs-json-store-encryption-adapter.git",
"keywords": [
"adapter",
"argon2",
"buffer",
"crypto",
"cypher",
"decipher",
"decryption",
"encryption",
"fs-json-store",
"libsodium",
"sodium"
],
"main": "./lib/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "npm-run-all prepare:husky prepare:ts-patch prepare:ts-patch:check",
"prepare:ts-patch": "ts-patch install -s",
"prepare:ts-patch:check": "ts-patch check",
"prepare:husky": "husky install",
"lib:compile": "tsc --project ./src/lib/tsconfig.json --listEmittedFiles",
"lib:compile:watch": "tsc --project ./src/lib/tsconfig.json -w",
"lib:clean": "rimraf ./lib",
"lib": "npm-run-all ts-patch lib:clean lib:compile lint test",
"lint:ts:base": "eslint",
"lint": "yarn lint:ts:base \"./src/**/*.ts\"",
"test": "npm-run-all ts-patch test:ava",
"test:ava": "cross-env TS_NODE_FILES=true TS_NODE_PROJECT=./src/test/tsconfig.json NODE_OPTIONS=\"--import=tsimp/import\" npm exec --package=ava -- ava \"./src/test/**/*.spec.ts\"",
"test:compiled:generate_encrypted_presets_dumps": "cross-env GENERATE_ENCRYPTED_PRESETS_DUMPS=true ts-node ./src/test/util.ts",
"ts-patch": "ts-patch install --persist"
},
"ava": {
"extensions": {
"ts": "module"
},
"files": [
"./src/test/**/*.{spec,test}.ts"
],
"timeout": "900s",
"verbose": true
},
"dependencies": {
"@hscmap/cache-map": "^1.2.0",
"make-error-cause": "^2.3.0",
"sodium-native": "^4.1.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/randomstring": "^1.1.8",
"@types/sodium-native": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"ava": "^6.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.25.4",
"format-imports": "^4.0.4",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"mkdirp": "^3.0.1",
"npm-run-all2": "^6.2.2",
"randomstring": "^1.2.1",
"rimraf": "^6.0.1",
"ts-node": "^10.4.0",
"ts-patch": "^3.2.1",
"tsimp": "^2.0.11",
"typescript": "^5.5.4",
"typescript-transform-paths": "^3.5.0"
},
"resolutions": {
"*/**/tslib": "^2.x",
"*/**/typescript": "^5.5.4"
}
}