This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
103 lines (103 loc) · 2.52 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "openrecord",
"version": "2.11.1",
"description": "Active record like ORM for nodejs",
"license": "MIT",
"keywords": [
"orm",
"record",
"sql",
"sqlite3",
"postgres",
"pg",
"mysql",
"oracle",
"graphql",
"database",
"activerecord",
"promise",
"rest",
"restify",
"nested set",
"ldap",
"activedirectory",
"active directory",
"ad"
],
"author": "Philipp Waldmann <philipp.waldmann@digitalbits.at>",
"repository": {
"type": "git",
"url": "git://github.com/PhilWaldmann/openrecord.git"
},
"scripts": {
"test": "npm run lint && npm run mocha -- --bail",
"mocha": "NODE_ENV=test TZ='UTC' mocha",
"lint": "eslint --ext .js lib test",
"format": "prettier --write lib/**/* test/**/*.js",
"coverage": "NODE_ENV=test istanbul cover _mocha -- --reporter dot",
"report-coverage": "NODE_ENV=test istanbul cover _mocha -- --require blanket --reporter mocha-lcov-reporter && cat ./coverage/lcov.info | coveralls",
"dev-docs": "docsify serve docs --port 4444",
"precommit": "lint-staged"
},
"dependencies": {
"date-fns": "^1.30.1",
"debug": "^4.3.1",
"inflection": "~ 1.12.x",
"knex": "^0.21.19",
"validator": "^11.1.0"
},
"devDependencies": {
"async": "^3.2.0",
"axios": "^0.21.1",
"benchmark": "^2.1.4",
"blanket": ">= 1.1.x",
"coveralls": "^3.1.0",
"docsify-cli": "^4.4.2",
"eslint": "^7.21.0",
"eslint-config-digitalbits": "^1.0.4",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"graphql-tools": "^6.2.6",
"istanbul": "^0.4.5",
"ldapjs": "^2.2.4",
"lint-staged": "^10.5.4",
"microtime": "^3.0.0",
"mocha": "^6.2.3",
"mocha-lcov-reporter": ">= 0.0.x",
"mysql": "^2.18.1",
"pg": "^8.5.1",
"prettier": "^2.2.1",
"restify": "^8.5.1",
"semver": "^7.3.4",
"should": "^13.2.3",
"sqlite3": "^5.0.2",
"webpack": "^4.46.0",
"webpack-node-externals": "^2.5.2"
},
"main": "./store",
"types": "./types/index.d.ts",
"directories": {
"test": "./test"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"git add"
]
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"engines": {
"node": ">=4.0.0"
}
}