-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 917 Bytes
/
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
{
"name": "nedb-repl",
"version": "1.2.3",
"description": "The command-line tool for NeDB",
"license": "MIT",
"repository": "nikolvs/nedb-repl",
"author": "Nikolas Silva <nikolas.rsilva@gmail.com>",
"engines": {
"node": ">= 14.0.0"
},
"bin": {
"nedb": "bin/nedb"
},
"scripts": {
"test": "eslint . && ava"
},
"keywords": [
"nedb",
"repl",
"cli",
"terminal",
"database",
"nosql"
],
"dependencies": {
"cardinal": "^2.1.1",
"chalk": "^4.1.1",
"circular-json": "^0.5.9",
"gaze": "^1.1.3",
"meow": "^9.0.0",
"nedb": "1.8.0",
"ramda": "^0.27.1",
"vm2": "^3.1.0"
},
"devDependencies": {
"ava": "^0.23.0",
"babel-eslint": "^8.0.1",
"eslint": "^4.10.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0"
}
}