-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.11 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
{
"name": "node-norm",
"version": "1.4.7",
"description": "Norm is Not ORM though data access layer",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"test": "npm run test:node && npm run test:browser",
"lint": "eslint .",
"lint-staged": "lint-staged",
"build": "rm -rf dist && webpack-cli --mode=development && webpack-cli --mode=production",
"coverage:node": "nyc --check-coverage --report-dir=./coverage/node --reporter=html --reporter=text mocha test/node/**",
"coverage:browser": "karma start --coverage",
"test:node": "mocha test/node/**",
"test:node:watch": "mocha test/node/** -w",
"test:browser": "karma start",
"test:browser:watch": "karma start --auto-watch=true --single-run=false",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"author": "Ganesha <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xinix-technology/node-norm.git"
},
"files": [
"adapters",
"dist",
"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": "^2.4.3",
"big.js": "^6.0.3",
"fs-extra": "^9.0.1",
"generic-pool": "^3.7.1",
"koa-compose": "^4.1.0",
"uuid": "^8.1.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-xinix": "^1.1.14",
"husky": "^5.1.3",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-mocha-snapshot": "^0.2.1",
"karma-snapshot": "^0.6.0",
"karma-source-map-support": "^1.4.0",
"karma-webpack": "^5.0.0",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0"
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}