-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "aws_reserved_instance_checker",
"version": "0.4.0",
"description": "Check is there any resource not included in active reserved instances and send notification to slack.",
"main": "./build/index",
"scripts": {
"start": "yarn build && ./bin/aws_reserved_instance_checker.js",
"build": "rm -rf build && tsc",
"test": "nyc --reporter=text-summary mocha -r ts-node/register src/**/*Spec.ts",
"test-ci": "nyc mocha -r ts-node/register --reporter mocha-junit-reporter src/**/*Spec.ts > coverage.lcov"
},
"repository": {
"type": "git",
"url": "git@github.com:kirkchen/aws_reserved_instance_checker.git"
},
"nyc": {
"include": [
"src/**/!(*Spec).ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-lcov"
],
"sourceMap": true,
"instrument": true
},
"author": "Kirk Chen <rwk0119@yahoo.com.tw>",
"license": "MIT",
"bin": {
"aws_reserved_instance_checker": "./bin/aws_reserved_instance_checker.js"
},
"files": [
"bin/",
"build/"
],
"dependencies": {
"@slack/client": "^3.10.0",
"aws-sdk": "^2.80.0",
"mocha-junit-reporter": "^1.13.0"
},
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-as-promised": "^0.0.31",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.7",
"@types/sinon": "^2.3.2",
"chai": "^4.0.2",
"chai-as-promised": "^7.1.1",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"sinon": "^2.3.6",
"source-map-support": "^0.4.15",
"ts-node": "^3.1.0",
"typescript": "^2.4.1"
}
}