-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.24 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
{
"name": "@imqueue/sequelize",
"version": "1.4.0",
"description": "Sequelize ORM refines for @imqueue",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"mocha": "nyc mocha",
"show:test": "/usr/bin/env node -e \"require('open')('file://`pwd`/coverage/index.html',{wait:false});\"",
"show:doc": "/usr/bin/env node -e \"require('open')('file://`pwd`/docs/index.html',{wait:false});\"",
"test": "npm run build && npm run mocha && npm run show:test",
"clean:dts": "find . -name '*.d.ts' -not -wholename '*node_modules*' -type f -delete",
"clean:map": "find . -name '*.js.map' -not -wholename '*node_modules*' -type f -delete",
"clean:js": "find . -name '*.js' -not -wholename '*node_modules*' -type f -delete",
"clean:ts": "find . -name '*.ts' -not -wholename '*node_modules*' -not -wholename '*.d.ts' -type f -delete",
"clean:test": "rm -rf .nyc_output coverage",
"clean:doc": "rm -rf docs",
"clean": "npm run clean:test && npm run clean:dts && npm run clean:map && npm run clean:js && npm run clean:doc",
"doc": "npm run clean:doc && typedoc --excludePrivate --excludeExternals --hideGenerator --exclude \"**/+(debug|test|node_modules|docs|coverage|.nyc_output)/**/*\" --mode file --out ./docs . && npm run show:doc",
"help": "npm-scripts-help"
},
"repository": {
"type": "git",
"url": "[email protected]:/imqueue/sequelize"
},
"bugs": {
"url": "https://github.com/imqueue/sequelize/issues"
},
"homepage": "https://github.com/imqueue/sequelize",
"author": "imqueue.com <[email protected]>",
"license": "ISC",
"dependencies": {
"@imqueue/core": "^1.15.0",
"@imqueue/js": "^1.4.0",
"@imqueue/rpc": "^1.17.0",
"@types/bluebird": "^3.5.42",
"@types/validator": "^13.12.2",
"bluebird": "^3.7.2",
"chalk": "^4.1.2",
"dotenv": "^16.4.5",
"pg": "^8.13.1",
"sequelize": "^5.22.5",
"sequelize-typescript": "^1.1.0",
"sql-formatter": "^15.4.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.9",
"@types/mock-require": "^3.0.0",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"@types/sinon": "^17.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/typescript-estree": "^8.13.0",
"chai": "^4.3.7",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"minimist": "^1.2.8",
"mocha": "^10.8.2",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"npm-scripts-help": "^0.8.0",
"nyc": "^17.1.0",
"open": "^8.4.2",
"reflect-metadata": "^0.2.2",
"sequelize-cli": "^6.6.2",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typescript": "^5.0.4"
},
"typescript": {
"definitions": "index.d.ts"
},
"nyc": {
"check-coverage": false,
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"**/test/**"
],
"require": [
"ts-node/register"
],
"reporter": [
"html",
"text",
"text-summary",
"lcovonly"
]
}
}