This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.01 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
76
77
78
{
"name": "sns-sqs-unwrap",
"version": "1.0.0",
"description": "Utility for unwrapping events from SNS/SQS",
"keywords": [
"sns",
"sqs",
"aws",
"lambda"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"clean": "rm -rf lib",
"build": "tsc",
"clean-build": "npm run clean && npm run build",
"test": "jest --coverage",
"prepublishOnly": "npm run clean-build"
},
"author": {
"name": "Dom Parfitt",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/EconomistDigitalSolutions/sns-sqs-unwrap.git"
},
"license": "MIT",
"dependencies": {
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"jest": "^24.9.0",
"jest-junit": "^8.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
},
"publishConfig": {
"access": "public"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageDirectory": "test-results/jest/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**"
],
"reporters": [
"default",
"jest-junit"
],
"verbose": true
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "./js-test-results.xml",
"usePathForSuiteName": "true"
}
}