-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.73 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
{
"author": "",
"bugs": {
"url": "https://github.com/bleshik/dynamodb-replicator/issues"
},
"dependencies": {
"aws-dynamodb": "0.1.66",
"aws-lambda": "0.1.2",
"aws-sdk": "2.36.0",
"lodash": "4.17.5"
},
"description": "DynamoDB Streams events handler which copies changed data to DynamoDB tables in other regions",
"devDependencies": {
"@types/aws-lambda": "0.0.9",
"@types/aws-sdk": "0.0.42",
"@types/jest": "19.2.2",
"@types/lodash": "4.14.61",
"awesome-typescript-loader": "3.1.3",
"bestzip": "1.1.4",
"cross-env": "4.0.0",
"jest": "19.0.2",
"rimraf": "2.6.1",
"ts-jest": "19.0.8",
"tslint": "5.0.0",
"tslint-react": "2.5.0",
"typescript": "2.4.2",
"webpack": "2.3.2"
},
"homepage": "https://github.com/bleshik/dynamodb-replicator#readme",
"jest": {
"coverageThreshold": {
"global": {
"branches": 70,
"lines": 68
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testMatch": [
"**/*.spec.(ts|tsx|js)"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"license": "ISC",
"main": "build/dist/index.js",
"name": "dynamodb-replicator",
"repository": {
"type": "git",
"url": "git+https://github.com/bleshik/dynamodb-replicator.git"
},
"scripts": {
"build": "rimraf build/dist && cross-env NODE_ENV=production NODE_PATH=./node_modules webpack --config ./webpack.config.js --progress --profile --bail",
"package": "npm run build && cd build/dist && bestzip package.zip index.js",
"prepush": "jest --coverage && tslint --project tsconfig.json -c ../../../tslint.json",
"test": "jest"
},
"version": "0.1.3"
}