-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "jify",
"version": "0.4.0",
"description": "An indexed JSON file database",
"main": "lib/main.js",
"bin": {
"jify": "bin/jify"
},
"files": [
"bin",
"lib"
],
"scripts": {
"build": "tisk -d -Werror -o lib src",
"build-test": "npm run build && tisk -p . -o test/out test/index.ts",
"lint": "eslint src --ext ts",
"profile": "npm run build-test && cd test/out && node --prof --no-logfile-per-isolate . && node --prof-process v8.log > processed.txt && rm v8.log",
"test": "npm run check-wsl && npm run build-test && node test/out",
"check-wsl": "node -e \"(async()=>process.exitCode=+(await import('is-wsl')).default)()\" || (echo WSL is unsupported >&2 && exit 1)",
"prepare": "npm run build",
"version": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohd-akram/jify.git"
},
"keywords": [
"json",
"database"
],
"author": "Mohamed Akram",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohd-akram/jify/issues"
},
"homepage": "https://github.com/mohd-akram/jify#readme",
"devDependencies": {
"@types/argparse": "^2.0.14",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"is-wsl": "^3.1.0",
"tisk": "v2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"argparse": "^2.0.1",
"os-lock": "^2.0.0",
"tiny-lru": "^11.2.5",
"z85": "^0.0.2"
}
}