-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "gitops-update",
"private": true,
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --minify",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"test": "nyc mocha"
},
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/github": "^5.0.0",
"async-retry": "^1.3.3",
"lodash": "^4.17.21",
"yaml": "^2.0.0-8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@octokit/types": "^6.34.0",
"@outofsyncstudios/eslint-config": "^1.0.2",
"@tsconfig/node12": "^1.0.9",
"@types/async-retry": "^1.4.3",
"@types/chai": "^4.2.21",
"@types/lodash": "^4.14.172",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vercel/ncc": "^0.31.1",
"chai": "^4.3.4",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-mocha": "^9.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"proxyquire": "^2.1.3",
"sinon": "^12.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}