-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 822 Bytes
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
{
"name": "dirty",
"description": "A tiny & fast key value store with append-only disk log. Ideal for apps with < 1 million records.",
"version": "1.1.3",
"repository": "https://github.com/felixge/node-dirty.git",
"license": "MIT",
"dependencies": {},
"main": "./lib/dirty",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"mocha": "^9.1.1",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "mocha test/test-*.js -R list"
}
}