-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 KB
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": "node-dal",
"version": "3.0.2",
"description": "Node.js Database Abstraction Layer",
"main": "lib/dalFactory.js",
"scripts": {
"test": "NLS_LANG=POLISH_POLAND.AL32UTF8 NLS_DATE_FORMAT='yyyy-mm-dd' TZ='00:00' npx mocha -R spec --timeout 15000 ./test/",
"testperf": "NLS_DATE_FORMAT='yyyy-mm-dd' TZ='00:00' npx mocha -R spec --timeout 150000 ./test/perf/",
"changelog": "git changelog -a -n -x > changelog.txt",
"eslint": "eslint ./libs ./tests"
},
"engines": {
"node": ">=6"
},
"author": "Mariusz Lichota",
"license": "MIT",
"keywords": [
"oracle",
"oracledb",
"dbi",
"dal",
"node dal",
"database abstraction layer",
"database"
],
"repository": {
"type": "git",
"url": "https://github.com/marlic7/node-dal.git"
},
"dependencies": {
"async": "^2.6.2",
"bluebird": "^3.5.4",
"find-up": "^2.1.0",
"fn-params-parser": "^1.0.1",
"lodash": "^4.17.11",
"oracle-prepare-sql": "1.1.3",
"semver": "^5.7.0"
},
"devDependencies": {
"mocha": "^8.1.3",
"oracledb": "~5.1.0",
"should": "^13.2.3"
}
}