-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "sequelize-replace-enum-postgres",
"version": "1.6.0",
"description": "This package provides the methods needed to replace a PostgreSQL ENUM in Sequelize migrations.",
"main": "build/index.js",
"scripts": {
"test": "mocha",
"test:watch": "npm run test -- --watch",
"build": "babel src -D -s -d build",
"lint:src": "eslint src",
"lint:src:fix": "npm run lint:src -- --fix",
"lint:test": "eslint test --config .eslintrc.test.js",
"lint:test:fix": "npm run lint:test -- --fix",
"lint": "npm run lint:src && npm run lint:test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"prepublishOnly": "npm run build"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abelosorio/sequelize_replace_enum_postgres.git"
},
"keywords": [
"NodeJS",
"PostgreSQL",
"ENUM",
"Migration",
"Sequelize"
],
"author": "Abel M. Osorio <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/abelosorio/sequelize_replace_enum_postgres/issues"
},
"homepage": "https://github.com/abelosorio/sequelize_replace_enum_postgres#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-config-google": "^0.9.1",
"mocha": "^10.1.0",
"pre-commit": "^1.2.2",
"sinon": "^4.5.0"
}
}