-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 975 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
{
"name": "fly-json-db",
"version": "1.0.3",
"description": "NoSQL Embedded Database on top json and stream for NodeJS",
"main": "src/flyjsondb.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aalfiann/fly-json-db.git"
},
"keywords": [
"json-db",
"json-query",
"json-nosql",
"json-stream"
],
"author": "M ABD AZIZ ALFIAN",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/fly-json-db/issues"
},
"homepage": "https://github.com/aalfiann/fly-json-db#readme",
"devDependencies": {
"coveralls": "^3.0.7",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1"
},
"dependencies": {
"JSONStream": "^1.3.5",
"event-stream": "^4.0.1",
"fly-json-odm": "^1.8.4"
}
}