-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 978 Bytes
/
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
{
"name": "stream-s3-sqs",
"version": "1.0.0",
"description": "",
"main": "src/process.ts",
"scripts": {
"test": "jest --coverage --passWithNoTests",
"test:watch": "jest --coverage --watchAll",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint 'src/**/*.ts'",
"start": "NODE_ENV=production node out/process.js",
"prepare": "npm run build",
"coverage:push": "cat ./coverage/lcov.info | coveralls"
},
"keywords": [],
"author": "Steven Fountain",
"license": "ISC",
"dependencies": {
"aws-sdk": "2.620.0",
"winston": "3.2.1"
},
"devDependencies": {
"@types/jest": "25.1.2",
"@types/node": "13.7.0",
"@types/source-map-support": "0.5.1",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"coveralls": "3.0.9",
"eslint": "6.8.0",
"jest": "25.1.0",
"source-map-support": "0.5.16",
"ts-jest": "25.2.0",
"typescript": "3.7.5"
}
}