forked from ExpediaGroup/spinnaker-pipeline-trigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.07 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": "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.4.0",
"@aws-sdk/client-sns": "3.24.0",
"@types/js-yaml": "^4.0.1",
"@types/node": "16.4.10",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@types/mock-fs": "4.13.1",
"@types/source-map-support": "0.5.4",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.29.0",
"@vercel/ncc": "0.29.0",
"eslint": "7.32.0",
"eslint-plugin-github": "4.1.5",
"eslint-plugin-jest": "24.4.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "27.0.6",
"jest-circus": "27.0.6",
"mock-fs": "5.0.0",
"nyc": "15.1.0",
"onchange": "7.1.0",
"prettier": "2.3.2",
"serve": "12.0.0",
"source-map-support": "0.5.19",
"ts-jest": "27.0.4",
"ts-mockito": "2.6.1",
"ts-node": "10.1.0",
"typescript": "4.3.5"
}
}