-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
64
65
66
67
68
69
{
"name": "polaris-action",
"version": "0.1.0",
"private": true,
"description": "Execute Polaris security testing and provide feedback within GitHub",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt -o dist/ src/main.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint src/**/*.ts --fix",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"pre-commit": [
"build",
"package"
],
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/polaris-action.git"
},
"keywords": [],
"author": "Synopsys Inc.",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/contentful/polaris-action/issues"
},
"homepage": "https://github.com/contentful/polaris-action#readme",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@octokit/rest": "^19.0.7",
"adm-zip": "^0.5.10",
"axios": "^1.7.4",
"fs-extra": "^11.1.0",
"jsonpath": "^1.1.1",
"moment": "^2.29.4",
"typed-rest-client": "^1.8.9"
},
"devDependencies": {
"@actions/tool-cache": "^2.0.1",
"@types/babel__parser": "^7.1.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vercel/ncc": "^0.36.1",
"await-exec": "^0.1.2",
"case-insensitive-map": "^1.0.1",
"eslint": "^8.33.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.1",
"pre-commit": "^1.2.2",
"prettier": "^2.8.3",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5",
"winston": "^3.8.2"
}
}