-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "aws-event-stream",
"version": "1.2.11",
"description": "A simple and fast EventStore for AWS.",
"author": "Rodrigo Pinheiro de Almeida <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"EventStore",
"Event",
"event sourcing",
"eventsourcing",
"cqrs",
"aws",
"DynamoDB",
"SQS"
],
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"lint": "tslint ./src/**/*.ts ./test/**/*.ts",
"lint:fix": "tslint --fix ./src/**/*.ts ./test/**/*.ts -t verbose",
"postversion": "git push origin master",
"pretest": "cross-env NODE_ENV=test npm run build && npm run lint",
"test": "jest --config ./test/jest.config.js --coverage --silent test/unit",
"test:integration": "npm run test:integration:setup && jest --config ./test/jest.config.js --silent test/integration",
"test:integration:setup": "test/integration/fixture/setup.sh",
"test:integration:teardown": "test/integration/fixture/teardown.sh",
"test:unit": "jest --config ./test/jest.config.js --coverage --silent test/unit",
"test:watch": "jest --config ./test/jest.config.js --watch --silent test/unit",
"test:coverage": "nyc npm test",
"test:mutation": "stryker run ./test/stryker.conf.json",
"stryker:init": "stryker init",
"tsc": "tsc"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"json",
"html"
],
"report-dir": "./reports/coverage",
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "https://github.com/rpinheiroalmeida/aws-event-stream.git"
},
"bugs": {
"url": "https://github.com/rpinheiroalmeida/aws-event-stream.git/issues"
},
"directories": {
"lib": "dist"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true,
"devDependencies": {
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/jest-runner": "^5.6.1",
"@stryker-mutator/typescript": "^4.0.0",
"@stryker-mutator/typescript-checker": "^5.6.1",
"@types/amqplib": "^0.5.9",
"@types/async": "^3.2.1",
"@types/aws-sdk": "2.7.0",
"@types/jest": "^27.0.2",
"@types/joi": "^13.6.3",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^5.0.7",
"aws-sdk": "^2.855.0",
"codecov": "^3.8.3",
"cross-env": "^5.2.0",
"jest": "^27.0.5",
"jest-sonar-reporter": "^2.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.0",
"rimraf": "^2.7.1",
"source-map-support": "^0.5.10",
"test-wait": "^1.1.3",
"ts-jest": "^27.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3"
},
"publishConfig": {
"access": "public"
}
}