-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.63 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
{
"name": "@fountainhead/drone-ec2-supervisor",
"version": "1.0.0",
"description": "Automatically Starts/Stops an EC2 Instance based on Drone CI queued jobs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Fountainhead Technologies Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/FountainheadTechnologies/drone-ec2-supervisor/issues"
},
"homepage": "https://github.com/FountainheadTechnologies/drone-ec2-supervisor#readme",
"dependencies": {
"aws-sdk": "2.440.0",
"node-fetch": "2.3.0",
"pino": "5.12.2",
"pino-pretty": "2.6.0",
"tslib": "1.9.3"
},
"devDependencies": {
"@commitlint/config-conventional": "7.5.0",
"@types/jest": "24.0.11",
"@types/node-fetch": "2.3.2",
"@types/pino": "5.8.6",
"commitlint": "7.5.2",
"cross-env": "5.2.0",
"husky": "1.3.1",
"jest": "24.7.1",
"nodemon": "1.18.11",
"rimraf": "2.6.3",
"semantic-release": "16.0.0-beta.18",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "3.4.4"
},
"scripts": {
"dev": "cross-env PRETTY_LOGS=true LOG_LEVEL=trace nodemon -e ts -x ts-node src/index.ts",
"lint": "tslint --project tsconfig.json",
"test": "jest --coverage",
"build": "tsc --project tsconfig.json",
"clean": "rimraf dist"
},
"jest": {
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "public"
}
}