-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "sncicd-rollback-app",
"version": "1.0.0",
"description": "Initiate a rollback of a specified application to a specified version.",
"main": "index.ts",
"scripts": {
"build": "tsc --outDir lib",
"test": "tsc --noEmit && jest unit --runInBand",
"integration": "tsc --noEmit && jest integration --runInBand",
"lint": "eslint . --ext .ts",
"format": "prettier --config prettier.json --write ./**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ServiceNow/sncicd-rollback-app.git"
},
"author": "SoftServe inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/ServiceNow/sncicd-rollback-app/issues"
},
"homepage": "https://github.com/ServiceNow/sncicd-rollback-app#readme",
"devDependencies": {
"@types/jest": "^26.0.12",
"@types/node": "^14.6.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"axios": "^0.21.1"
}
}