-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "contribution-automation-action",
"version": "2.3.7",
"description": "A github action to automate contributors section of a readme",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"format": "prettier --write **/*.js",
"format-check": "prettier --check **/*.js",
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"build": "ncc build src/index.js -o dist --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akhilmhdh/contribution-automation-action.git"
},
"author": "akhi",
"license": "ISC",
"bugs": {
"url": "https://github.com/akhilmhdh/contribution-automation-action/issues"
},
"homepage": "https://github.com/akhilmhdh/contribution-automation-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"nanoid": "^3.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@vercel/ncc": "^0.34.0",
"babel-jest": "^27.2.4",
"eslint": "^8.25.0",
"jest": "^29.2.0",
"prettier": "^2.7.1"
}
}