-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
48
49
50
51
52
53
54
55
{
"name": "dc-outdated",
"version": "1.1.0",
"main": "./dist/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/solunio/dc-outdated.git"
},
"bin": {
"dc-outdated": "./dist/bin/dc-outdated.js"
},
"keywords": [
"docker",
"compose",
"semver"
],
"license": "MIT",
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"start": "node dist/bin/dc-outdated.js",
"version": "yarn run version:changelog && git add CHANGELOG.md",
"version:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"cleanup-lockfile": "yarn-deduplicate --strategy fewer",
"format": "prettier --write .",
"check-formatting": "prettier --check ."
},
"dependencies": {
"axios": "^0.21.1",
"cli-progress": "^3.9.0",
"commander": "^8.1.0",
"easy-table": "^1.1.1",
"inquirer": "^8.1.2",
"js-yaml": "^4.1.0",
"lodash": "^4.17.11",
"semver": "^7.3.5",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/easy-table": "^0.0.33",
"@types/inquirer": "^7.3.3",
"@types/js-yaml": "^4.0.3",
"@types/lodash": "^4.14.172",
"@types/node": "^12.20.21",
"@types/semver": "^7.3.8",
"conventional-changelog-cli": "^2.1.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5",
"yarn-deduplicate": "^3.1.0"
}
}