-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "compliment-bot-action",
"version": "1.3.1",
"description": "Generates a random, enthusiastic compliment with emojis on every push.",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js -o dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci",
"prepare": "husky",
"lint": "eslint \"**/*.{js,yml}\"",
"lint:fix": "eslint \"**/*.{js,yml}\" --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junjie-w/compliment-bot-action.git"
},
"author": "Junjie Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/junjie-w/compliment-bot-action/issues"
},
"engines": {
"node": ">=20.8.1"
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-yml": "^1.14.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"semantic-release": "^24.1.3"
}
}