-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.44 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
57
58
59
60
61
62
63
64
{
"name": "filejson",
"version": "1.2.0",
"description": "Zero-config automatic JSON file persistence with atomic writes, debouncing, and crash safety. Just modify objects, changes save automatically.",
"main": "app.js",
"types": "index.d.ts",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "mocha test/filejson.test.js --timeout 5000",
"test:watch": "mocha test/filejson.test.js --watch",
"test:coverage": "c8 --reporter=text --reporter=html mocha test/filejson.test.js --timeout 5000",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"author": "Bill Christo",
"license": "MIT",
"devDependencies": {
"c8": "^10.1.3",
"eslint": "^8.57.0",
"mocha": "^8.4.0"
},
"bugs": {
"url": "https://github.com/bchr02/filejson/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bchr02/filejson.git"
},
"homepage": "https://github.com/bchr02/filejson#readme",
"keywords": [
"json",
"file",
"storage",
"persistence",
"database",
"autosave",
"auto-save",
"atomic-writes",
"crash-safe",
"debounce",
"sync",
"state",
"config",
"settings",
"cache",
"local-storage",
"filesystem",
"data-store",
"proxy",
"reactive",
"automatic",
"nosql",
"document-store",
"embedded-database",
"zero-config",
"typescript",
"async-await",
"promises",
"node",
"nodejs"
]
}