-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1021 Bytes
/
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
{
"name": "codepipeline-webhook-action",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@actions/core": ">=1.2.6",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^14.14.0",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"nodemon": "^2.0.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"lint": "eslint . --ext .ts",
"start:dev": "nodemon",
"start": "npm run build && node build/index.js",
"build": "rimraf ./build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medlypharmacy/codepipeline-webhook-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/medlypharmacy/codepipeline-webhook-action/issues"
},
"homepage": "https://github.com/medlypharmacy/codepipeline-webhook-action#readme"
}