-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "sequelize-adapter",
"version": "2.1.5",
"description": "Use Unit Of Wrok pattern to wrap sequelize up.",
"main": "dist/cjs/_index.js",
"module": "dist/esm5/_index.js",
"types": "dist/cjs/_index.d.ts",
"sideEffects": false,
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "gulp build",
"upgrade-interactive": "npx npm-check --update",
"test1": "./node_modules/ts-node/dist/bin.js ./test/test1.ts"
},
"author": "Bibby Chung",
"homepage": "https://github.com/BibbyChung/sequelize-adapter",
"bugs": "https://github.com/BibbyChung/sequelize-adapter/issues",
"repository": {
"type": "git",
"url": "https://github.com/BibbyChung/sequelize-adapter.git"
},
"keywords": [
"sequelize",
"mysql",
"postgresql",
"sqlite",
"unitofwork"
],
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.6",
"@types/mocha": "^8.2.3",
"@types/node": "^16.3.1",
"@types/sequelize": "^4.28.10",
"@types/sinon": "^10.0.2",
"@types/uuid": "^8.3.1",
"coveralls": "^3.1.1",
"gulp": "^4.0.2",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"rxjs": "^7.2.0",
"sequelize": "^6.6.5",
"sinon": "^11.1.1",
"sqlite3": "^5.0.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"uuid": "^8.3.2"
},
"dependencies": {
"debug": "^4.3.2"
}
}