-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.42 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "node-norm",
"version": "1.5.0",
"description": "Norm is Not ORM though data access layer",
"main": "index.js",
"scripts": {
"test": "mocha test/node/**",
"test:watch": "mocha test/node/** -w",
"lint": "eslint .",
"lint-staged": "lint-staged",
"coverage": "nyc --check-coverage --report-dir=./coverage --reporter=html --reporter=text mocha test/node/**",
"prepare": "husky"
},
"author": "Ganesha <reekoheek@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xinix-technology/node-norm.git"
},
"files": [
"adapters",
"errors",
"filters",
"observers",
"schemas",
"connection.js",
"context.js",
"filter.js",
"index.js",
"manager.js",
"model.js",
"pool.js",
"query.js",
"schema.js",
"session.js"
],
"dependencies": {
"async-factory": "^1.0.0",
"bcryptjs": "^3.0.3",
"big.js": "^7.0.1",
"fs-extra": "^11.3.4",
"generic-pool": "^3.9.0",
"koa-compose": "^4.1.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-xinix": "^2.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"mocha": "^11.7.5",
"nyc": "^18.0.0"
},
"overrides": {
"diff": "^8.0.3",
"minimatch": "^9.0.7",
"serialize-javascript": "^7.0.5",
"uuid": "^14.0.0"
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}