-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "declarative-db",
"version": "1.0.3",
"description": "An easy-to-use declarative json-based database for Node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loarca/declarative-db.git"
},
"keywords": [
"json",
"declarative",
"database",
"db",
"js",
"javascript",
"ts",
"typescript",
"disk",
"easy",
"simple",
"node"
],
"author": {
"name": "Alejandro Loarca",
"email": "ale.j.loarca@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/loarca/declarative-db/issues"
},
"homepage": "https://github.com/loarca/declarative-db#readme",
"devDependencies": {
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.7.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"typescript": "^3.6.3"
},
"dependencies": {
"async-mutex": "^0.1.3"
}
}