-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 939 Bytes
/
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
{
"name": "csv-contribution-action",
"version": "1.0.1",
"description": "Checks contributions to CSV files",
"main": "dist/src/index.js",
"scripts": {
"test": "jest",
"build": "ncc build src/index.js --license licenses.txt",
"lint": "eslint --ext js,jsx src --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephanebruckert/csv-contribution-action.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stephanebruckert/csv-contribution-action/issues"
},
"homepage": "https://github.com/stephanebruckert/csv-contribution-action#readme",
"dependencies": {
"@actions/core": "^1.9.0",
"csv-parse": "^5.3.0"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"husky": "^8.0.1",
"jest": "^28.1.3"
}
}