-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "start-time-action",
"version": "1.0.0",
"description": "An action for setting the start time of a deployment in the environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --config test/support/unit.yaml",
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hotloop/start-time-action.git"
},
"keywords": [
"HotLoop",
"deployment",
"github",
"action"
],
"author": "hotloop.io",
"license": "ISC",
"bugs": {
"url": "https://github.com/hotloop/start-time-action/issues"
},
"homepage": "https://github.com/hotloop/start-time-action#readme",
"devDependencies": {
"@types/chai": "4.2.14",
"@types/mocha": "8.2.0",
"@types/node": "14.14.17",
"@types/sinon": "9.0.10",
"@types/sinon-chai": "3.2.5",
"chai": "4.2.0",
"mocha": "8.2.1",
"mockdate": "3.0.2",
"nyc": "^15.1.0",
"sinon": "9.2.2",
"sinon-chai": "3.5.0",
"ts-node": "9.1.1",
"tslint": "5.20.1",
"tslint-config-standard": "9.0.0",
"typescript": "3.9.7"
},
"dependencies": {
"@actions/core": "1.2.6"
}
}