-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "dynamo-stream-record-parser",
"version": "1.0.0",
"description": "A simple and fast parser of AWS Dynamo stream records",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">= 10.8.0"
},
"files": [
"README.md",
"lib/"
],
"keywords": [
"AWS",
"DynamoDB",
"Stream Record",
"TypeScript"
],
"scripts": {
"build": "tsc",
"test": "npm run format && npm run lint && jest",
"test:ci": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"format": "prettier --write \"{src, test}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlanChauchet/dynamo-stream-record-parser.git"
},
"author": "Alan Chauchet <[email protected]>",
"contributors": [
{
"name": "Alan Chauchet",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AlanChauchet/dynamo-stream-record-parser/issues"
},
"homepage": "https://github.com/AlanChauchet/dynamo-stream-record-parser#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/tests/*.+(ts)"
]
},
"devDependencies": {
"@types/big-integer": "^0.0.31",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}