-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.57 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": "event-scheduler",
"version": "1.0.0",
"description": "Time based event scheduler using AWS infrastructure",
"main": "index.ts",
"scripts": {
"test": "mocha",
"build": "webpack",
"audit": "npm audit",
"coverage": "nyc --reporter=lcov mocha",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"integration": "ts-node test/integration/index.spec.ts"
},
"keywords": [
"AWS",
"DDB",
"Event",
"Scheduler",
"Time-based",
"CloudWatch"
],
"pre-commit": [
"lint",
"test",
"audit"
],
"author": "Alex Pickering",
"license": "MIT",
"dependencies": {
"ajv": "6.11.0",
"uuid": "3.3.3",
"bunyan": "1.8.12",
"moment": "2.24.0",
"aws-sdk": "2.578.0",
"moment-timezone": "0.5.27"
},
"devDependencies": {
"@types/ajv": "1.0.0",
"@types/chai": "4.2.5",
"@types/uuid": "3.4.6",
"@types/mocha": "5.2.7",
"@types/sinon": "7.5.1",
"@types/bunyan": "1.8.6",
"@types/moment": "2.13.0",
"@types/mockdate": "2.0.0",
"@types/sinon-chai": "3.2.3",
"@types/moment-timezone": "0.5.12",
"@types/chai-as-promised": "7.1.2",
"nyc": "14.1.1",
"chai": "4.2.0",
"mocha": "6.2.2",
"sinon": "7.5.0",
"dotenv": "8.2.0",
"tslint": "5.20.1",
"ts-node": "8.5.2",
"webpack": "4.41.2",
"mockdate": "2.0.5",
"ts-loader": "6.2.1",
"pre-commit": "1.2.2",
"sinon-chai": "3.3.0",
"typescript": "3.7.2",
"webpack-cli": "3.3.10",
"chai-as-promised": "7.1.1",
"zip-webpack-plugin": "3.0.0",
"tslint-config-standard": "9.0.0"
}
}