-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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": "npm-auto-commit",
"version": "1.4.0",
"description": "",
"main": "dist/cli.js",
"bin": {
"commit": "dist/cli.js"
},
"files": [
"dist/*",
"index.js",
"utils/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"npm-auto-commit": "node dist/index.js",
"lint": "eslint --ext .ts src/ --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"build": "tsc",
"commitTest": "tsx src/cli.ts",
"deploy": "npm run build && npm publish"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.2.3",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.8",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"npm-auto-commit": "^1.0.2",
"semver": "^7.5.4"
}
}