-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "@eagerworks/sequelize-lambda-migrations",
"version": "1.0.1",
"description": "Package to manage sequelize migrations on serverless",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "NODE_ENV=test jest --coverage --silent --runInBand",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eagerworks/sequelize-lambda-migrations.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "eagerWorks",
"license": "MIT",
"bugs": {
"url": "https://github.com/eagerworks/serverless-sequelize-migrations/issues"
},
"homepage": "https://github.com/eagerworks/serverless-sequelize-migrations#readme",
"dependencies": {
"aws-lambda": "1.0.7",
"mysql2": "2.3.3",
"sequelize": "6.20.1",
"umzug": "3.1.1"
},
"devDependencies": {
"@types/aws-lambda": "8.10.97",
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.0",
"jest": "28.1.0",
"npm-snapshot": "1.1.1",
"prettier": "2.6.2",
"ts-jest": "28.0.3",
"typescript": "4.7.2"
},
"engines": {
"node": "14.19.3"
}
}