-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.66 KB
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
{
"name": "ice-crusher-task",
"version": "1.0.0",
"description": "Task to tear down unused Azure Resources.",
"main": "index.js",
"dependencies": {
"@azure/identity": "^2.0.5",
"@microsoft/microsoft-graph-client": "^3.0.2",
"axios": "^0.27.2",
"azure-pipelines-task-lib": "^3.1.3",
"fast-xml-parser": "^4.0.9",
"isomorphic-fetch": "^3.0.0",
"xml2js": "^0.4.23",
"xmllint": "^0.1.1",
"xmllint-ts": "^0.1.2"
},
"devDependencies": {
"@microsoft/microsoft-graph-types": "^2.24.0",
"@types/jest": "^27.0.0",
"@types/node": "^17.0.0",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"cpx": "^1.5.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.0.0",
"jest-junit": "^12.2.0",
"lint-staged": "^10.5.4",
"prettier": "^2.3.1",
"prettier-plugin-organize-imports": "^1.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.3.4"
},
"scripts": {
"start": "ts-node \"./src/index.ts\"",
"lint": "tsc --noEmit && eslint \"src/**/*.{js,ts}\"",
"build": "rimraf dist && tsc --project tsconfig.production.json && cpx \"src/task.json\" \"dist/\" && cpx \"package*.json\" \"dist/\"",
"test": "jest",
"test:ci": "npm run test -- --ci --reporters=default --reporters=jest-junit"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"outputDirectory": ".",
"outputName": "junit.xml"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"author": "Investec",
"license": "ISC"
}