forked from abelosorio/sequelize_replace_enum_postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.01 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
{
"name": "@chimanos/sequelize-replace-enum-postgres",
"version": "2.0.1",
"description": "This package provides the methods needed to replace a PostgreSQL ENUM in Sequelize migrations.",
"main": "dist/index.js",
"types": "src/index.ts",
"private": false,
"scripts": {
"test": "mocha --require ts-node/register --extensions ts,tsx 'test/**/*.test.{ts,tsx}'",
"test:watch": "mocha --require ts-node/register --extensions ts,tsx --watch --watch-files src 'test/**/*.test.{ts,tsx}'",
"build": "tsc --project tsconfig.json",
"format:eslint": "yarn lint --fix",
"format:prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"fix": "yarn format:prettier && yarn format:eslint",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyrilchapon/sequelize_replace_enum_postgres.git"
},
"keywords": [
"NodeJS",
"PostgreSQL",
"ENUM",
"Migration",
"Sequelize"
],
"author": "Cyril Chapon <[email protected]>",
"contributors": [
"Abel M. Osorio <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/cyrilchapon/sequelize_replace_enum_postgres/issues"
},
"homepage": "https://github.com/cyrilchapon/sequelize_replace_enum_postgres#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.4",
"@types/sequelize": "^4.28.14",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^6.0.0",
"mocha": "^10.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"sequelize": "^6.0.0"
},
"dependencies": {}
}