This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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
{
"name": "npm-version-action",
"version": "0.3.1",
"description": "A GitHub action for automatically versioning repos after PRs are merged",
"scripts": {
"check": "npm run lint && npm run coverage",
"coverage": "npm run test -- --coverage --silent",
"test": "jest --passWithNoTests",
"test:watch": "npm test -- --watch",
"lint": "eslint \"src/**/*.js\" \"test/**/*.js\" --ignore-path .gitignore --no-error-on-unmatched-pattern",
"lint:fix": "npm run lint -- --fix",
"build": "ncc build src/index.js",
"version": "npm run build && git add dist",
"prepare": "husky install"
},
"repository": "github:sam-doomguy/npm-version-action",
"author": "Sam M. R.",
"license": "MIT",
"devDependencies": {
"@conformity/commitlint-config-conformity": "^1.2.5",
"@types/jest": "^29.5.11",
"@zeit/ncc": "^0.22.0",
"commitlint-cli": "^1.1.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-security": "^1.7.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^3.0.3"
},
"engines": {
"node": "^18",
"npm": "^9"
},
"lint-staged": {
"**/*.js": [
"eslint --fix"
]
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"winston": "^3.11.0"
}
}