-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
72 lines (72 loc) · 1.64 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
70
71
72
{
"name": "@dvcorg/setup-dvc",
"version": "1.0.0",
"author": {
"name": "DVC",
"url": "https://github.com/iterative/setup-dvc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iterative/setup-dvc.git"
},
"bugs": {
"url": "https://github.com/iterative/setup-dvc/issues"
},
"keywords": [
"dvc",
"data version control",
"github action",
"github actions"
],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"main": "dist/index.js",
"scripts": {
"lintfix": "eslint --fix ./",
"lint": "eslint ./",
"test": "jest --passWithNoTests",
"do_snapshots": "jest --updateSnapshot",
"build": "ncc build src/github-action.js -o dist -m"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run build && git add dist/index.js"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.{md,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^2.2.0",
"node-fetch": "^2.6.5"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^8.0.3",
"jest": "^29.1.2",
"lint-staged": "^13.2.1",
"prettier": "^1.19.1"
}
}