This repository was archived by the owner on Jan 17, 2023. It is now read-only.
forked from sumcumo/node-modules-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
50
51
{
"name": "@sum.cumo/node-modules-check",
"version": "2.1.0",
"description": "Check for outdated Node modules",
"main": "src/index.js",
"bin": {
"check-node-modules": "./bin/check.js"
},
"scripts": {
"lint": "eslint --ext .js --fix --cache src",
"prepush": "npm run lint",
"release": "standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git@github.com:sumcumo/node-modules-check.git"
},
"homepage": "https://github.com/sumcumo/node-modules-check",
"keywords": [
"node",
"update",
"security"
],
"author": "sum.cumo GmbH",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"babel-eslint": "10.0.1",
"eslint": "5.15.2",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.16.0",
"husky": "1.3.1",
"prettier-eslint": "8.8.2",
"standard-version": "5.0.2"
},
"dependencies": {
"boxen": "3.0.0",
"chalk": "2.4.2",
"child_process": "1.0.2",
"easy-table": "1.1.1",
"figures": "2.0.0",
"semver": "5.6.0",
"yargs": "13.2.2"
}
}