This repository has been archived by the owner on Mar 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.44 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@axetroy/gpm",
"engines": {
"node": ">=7.6"
},
"version": "8.3.3",
"description": "Git Package Manager, make you manage the repository easier",
"main": "./build/gpm.js",
"scripts": {
"dev": "tsc && cross-env GPM_ENV=development ./bin/gpm",
"test": "tsc && cross-env GPM_ENV=development ava",
"coverage": "echo coverage done",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"generate": "all-contributors generate",
"docs": "docsify serve docs",
"build": "tsc -d",
"postuninstall": "node ./build/scripts/postuninstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpmer/gpm.js.git"
},
"keywords": [
"git",
"gpm",
"gpmx",
"github",
"manager"
],
"author": "axetroy",
"contributors": [
{
"name": "Axetroy",
"email": "troy450409405@gmail.com",
"url": "https://axetroy.github.io/"
},
{
"name": "WindomZ",
"url": "https://github.com/WindomZ"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gpmer/gpm.js/issues"
},
"bin": {
"gpm": "./bin/gpm"
},
"preferGlobal": true,
"homepage": "https://github.com/gpmer/gpm.js#readme",
"dependencies": {
"@axetroy/graceful": "^0.3.0",
"@axetroy/walk": "^0.1.0",
"axios": "^0.18.0",
"caporal": "^0.10.0",
"chalk": "^2.3.1",
"clipboardy": "^1.2.2",
"console.table": "^0.10.0",
"cross-spawn": "^6.0.4",
"debug": "^3.1.0",
"fs-extra": "^5.0.0",
"fuzzy": "^0.1.3",
"git-url-parse": "^8.1.0",
"global-modules-path": "^2.0.0",
"i18n": "^0.8.3",
"inquirer": "^5.1.0",
"inquirer-autocomplete-prompt": "^0.12.1",
"json-toy": "^1.0.12",
"lodash": "^4.17.5",
"moment": "^2.20.1",
"node-persist": "^2.1.0",
"os-locale": "^2.1.0",
"parse-git-config": "^2.0.0",
"prettyjson": "^1.2.1",
"semver": "^5.5.0",
"unique-string": "^1.0.0",
"which": "^1.3.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/debug": "^0.0.30",
"@types/fs-extra": "^5.0.0",
"@types/i18n": "^0.8.3",
"@types/inquirer": "^0.0.36",
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.6",
"all-contributors-cli": "^4.10.1",
"ava": "^0.25.0",
"conventional-changelog-cli": "^1.3.13",
"cross-env": "^5.1.3",
"docsify-cli": "^4.2.0",
"nyc": "^11.4.1",
"ts-node": "^5.0.0",
"typescript": "^2.7.2"
}
}