-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.17 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
47
{
"name": "npm-package-updater",
"version": "0.1.1",
"description": "npm package updater.",
"main": "dist/index.js",
"bin": {
"npm-package-updater": "bin/npm-package-updater"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --config eslintrc.js --ext .js,.ts",
"lintfix": "eslint . --config eslintrc.js --ext .js,.ts --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/um7a/npm-package-updater.git"
},
"bugs": {
"url": "https://github.com/um7a/npm-package-updater/issues"
},
"homepage": "https://github.com/um7a/npm-package-updater#readme",
"author": "um7a",
"license": "BSD-3-Clause",
"keywords": [
"npm",
"update",
"ci",
"utility"
],
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/node": "^20.11.19",
"@types/semver": "^7.3.12",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.1.2",
"ts-jest": "^29.0.3",
"typescript": "^5.3.3"
},
"dependencies": {
"semver": "^7.3.7"
}
}