This repository has been archived by the owner on May 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "codefresh-template-agent",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:rymdo/codefresh-template-agent.git",
"author": "Niklas Wigertz <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "pretty-quick --staged && lint-staged",
"build": "tsc",
"test:local": "jest",
"test:ci": "node --expose-gc ./node_modules/.bin/jest --ci -w=1 --logHeapUsage",
"test": "if [ \"${CI}\" ]; then yarn test:ci ; else yarn test:local ; fi",
"start": "run-s build test && node build/main.js",
"start:test": "CTA_MANIFESTS_PATH=$(pwd)/example/manifests CTA_TEMPLATES_PATH=$(pwd)/example/templates CTA_LOG_LEVEL=info yarn start"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint build test"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/nunjucks": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-jest": "^26.3.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^3.0.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"dependencies": {
"codefresh-sdk": "^1.9.14",
"glob": "^7.1.6",
"nunjucks": "^3.2.2",
"winston": "^3.3.3",
"yaml": "^1.10.0"
}
}