-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.32 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
56
57
58
59
60
61
62
63
64
{
"name": "@xmatters/upgreat",
"version": "1.1.3",
"description": "CLI for a painless way to upgrade package dependencies",
"author": "Bugra Firat <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/xmatters/upgreat"
},
"keywords": [
"dependencies",
"package-json",
"nodejs",
"cli",
"package-management",
"npm",
"yarn",
"dependency-manager"
],
"main": "index.js",
"bin": {
"upgreat": "./bin/run"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src",
"oclif.manifest.json"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"manifest": "oclif-dev manifest"
},
"dependencies": {
"@oclif/command": "^1.5.12",
"@oclif/config": "^1.12.12",
"@oclif/plugin-help": "^2.1.6",
"axios": "0.19.0",
"bluebird": "3.7.1",
"chalk": "3.0.0",
"hosted-git-info": "3.0.2",
"ramda": "0.26.1",
"semver": "6.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/test": "^1.2.4",
"jest": "^24.7.1",
"jest-html-reporter": "^2.5.0",
"prettier": "1.19.1"
},
"oclif": {
"commands": "./src/commands",
"bin": "upgreat",
"plugins": [
"@oclif/plugin-help"
]
}
}