-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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": "@far-analytics/persistence",
"version": "1.3.0",
"description": "A persistent storage layer.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "tsc --build .",
"clean:build": "npm run clean && npm run build",
"watch": "tsc --watch",
"lint": "npx eslint .",
"format": "npx prettier --write .",
"format:lint": "npm run format && npm run lint",
"test": "npm update && npm run clean:build && npm update --prefix ./tests/test && npm run clean:build --prefix ./tests/test && npm start --prefix ./tests/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/far-analytics/persistence.git"
},
"author": "FAR",
"license": "MIT",
"bugs": {
"url": "https://github.com/far-analytics/persistence/issues"
},
"homepage": "https://github.com/far-analytics/persistence#readme",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "^25.5.0",
"eslint": "^10.0.1",
"globals": "^17.3.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"keywords": [
"persistence",
"filesystem",
"fs",
"locking",
"rwlock",
"read-write-lock",
"concurrency",
"atomic",
"atomic-write",
"durability",
"fsync",
"nodejs"
],
"type": "commonjs"
}