-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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": "east-dynamodb",
"version": "1.0.1",
"description": "AWS DynamoDB adapter for east migration tool",
"main": "dist/index.js",
"files": [
"dist",
"lib"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint --max-warnings=0 .",
"test": "jest",
"build": "rollup -c"
},
"homepage": "https://github.com/cstar-industries/east-dynamodb",
"repository": {
"type": "git",
"url": "https://github.com/cstar-industries/east-dynamodb.git"
},
"keywords": [
"database",
"db",
"migrate",
"migration",
"aws",
"dynamodb",
"ddb",
"east",
"adapter"
],
"author": "Charles Francoise <charles.francoise@gmail.com>",
"license": "Apache-2.0",
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.3.0",
"@aws-sdk/util-dynamodb": "^3.3.0"
},
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.3.0",
"@aws-sdk/util-dynamodb": "^3.3.0",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@cstar-industries/eslint-config": "^1.2.2",
"@rollup/plugin-babel": "^5.2.2",
"babel-jest": "^26.6.3",
"east": "^2.0.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"prettier": "^2.2.1",
"rollup": "^2.37.1",
"rollup-plugin-cpy": "^2.0.1",
"rollup-plugin-terser": "^7.0.2"
}
}