-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "@ephys/sequelize-cursor-pagination",
"version": "1.1.0",
"description": "Implements Cursor Pagination in the Sequelize ORM",
"main": "lib/index.js",
"scripts": {
"test": "eslint src/**/*.ts && jest src",
"build": "tsc",
"prepublishOnly": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ephys/sequelize-cursor-pagination.git"
},
"author": "Zoé Cox <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ephys/sequelize-cursor-pagination/issues"
},
"homepage": "https://github.com/ephys/sequelize-cursor-pagination#readme",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@foobarhq/eslint-config": "^11.1.1",
"@foobarhq/eslint-config-typescript": "^11.1.1",
"@types/jest": "^27.0.2",
"babel-jest": "^27.3.1",
"eslint": "^7.29.0",
"jest": "^27.3.1",
"pg": "^8.7.1",
"typescript": "^4.4.4"
},
"dependencies": {
"sequelize": "^6.7.0"
}
}