forked from floydspace/dynamodb-migrations-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "dynamiter-cli",
"version": "1.5.5",
"description": "The DynamoDB migrations tool CLI",
"bin": {
"dynamiter": "./dist/dynamiter",
"dynamiter-cli": "./dist/dynamiter"
},
"files": [
".plop",
"dist",
"package.json",
"README.md"
],
"scripts": {
"build": "npm run build-clean && tsc && npm run build-bin",
"build-bin": "mv ./dist/index.js ./dist/dynamiter && chmod +x ./dist/dynamiter",
"build-clean": "rm -rf ./dist/",
"lint": "eslint . --ext .ts --ignore-path .gitignore",
"pretest": "npm run lint",
"test": "jest",
"coverage": "npm run test -- --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tango-io/dynamodb-migrations-tool.git"
},
"keywords": [
"cli",
"umzug",
"dynamodb",
"aws",
"serverless",
"sequelize",
"migrate",
"migration",
"migrations"
],
"author": "Victor Korzunin",
"license": "MIT",
"bugs": {
"url": "https://github.com/tango-io/dynamodb-migrations-tool/issues"
},
"homepage": "https://tango-io.github.io/dynamodb-migrations-tool",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cli-color": "^2.0.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.2",
"@types/ramda": "^0.27.19",
"@types/umzug": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"aws-sdk-mock": "^5.1.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"mockdate": "^2.0.5",
"semantic-release": "^17.1.2",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
},
"dependencies": {
"aws-sdk": "^2.673.0",
"cli-color": "^2.0.0",
"cosmiconfig": "^6.0.0",
"node-plop": "^0.25.0",
"ramda": "^0.27.1",
"umzug": "^2.3.0",
"yargs": "^15.3.1"
}
}