-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.1 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
{
"name": "spinnaker-pipeline-trigger",
"version": "0.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"build:watch": "onchange 'src/**/*.ts' -- yarn run build",
"clean": "rm -rf coverage src/**/*.js src/**/*.map",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --no-source-map-register --license licenses.txt",
"start": "ts-node src/index.ts",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"view:coverage": "serve coverage/lcov-report",
"all": "yarn build && yarn format && yarn lint && yarn package && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExpediaGroup/spinnaker-pipeline-trigger.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Expedia Group <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "^5.1.1",
"@aws-sdk/client-sns": "3.395.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "20.5.4",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "27.4.1",
"@types/mock-fs": "4.13.1",
"@types/source-map-support": "0.5.6",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"@vercel/ncc": "0.36.1",
"eslint": "7.32.0",
"eslint-plugin-github": "4.1.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "4.2.1",
"jest": "27.5.1",
"jest-circus": "27.5.1",
"mock-fs": "5.2.0",
"nyc": "15.1.0",
"onchange": "7.1.0",
"prettier": "2.8.8",
"serve": "14.2.1",
"source-map-support": "0.5.21",
"ts-jest": "27.1.3",
"ts-mockito": "2.6.1",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}