forked from paulirish/git-open
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"name": "git-open",
"version": "1.2.0",
"description": "Type `git open` to open the GitHub/GitLab/Bitbucket homepage for a repository.",
"author": "Paul Irish (http://paulirish.com/)",
"license": "MIT",
"homepage": "https://github.com/paulirish/git-open",
"bugs": {
"url": "https://github.com/paulirish/git-open/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/paulirish/git-open.git"
},
"contributors": [
"Paul Irish (http://paulirish.com/)",
"Jason McCreary <[email protected]> (http://jason.pureconcepts.net/)",
"David O'Trakoun <[email protected]> (https://davidosomething.com/)"
],
"keywords": [
"git",
"cli"
],
"engines": {
"node": ">=0.10.3",
"npm": ">=2.0.0"
},
"preferGlobal": true,
"bin": {
"git-open": "git-open",
"git-home": "git-open"
},
"scripts": {
"lint:package": "echo \"\nLinting package.json\" && node ./node_modules/package-json-validator/bin/pjv --recommendations --warnings && echo \"OK\n\n\"",
"lint:readme": "echo \"\nLinting README.md\" && node ./node_modules/markdownlint/lib/markdownlint.js --config markdownlint.json README.md && echo \"OK\n\n\"",
"test": "npm run --silent lint:package && npm run --silent lint:readme"
},
"dependencies": {},
"devDependencies": {
"markdownlint": "^0.2.0",
"package-json-validator": "^0.6.1"
}
}