-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"name": "git-open",
"version": "3.1.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": "git+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"
},
"man": "./git-open.1",
"scripts": {
"lint:editorconfig": "eclint check ./git-open *.md *.yml",
"lint:readme": "markdownlint --config markdownlint.json README.md",
"lint:man": "markdownlint --config markdownlint.json git-open.1.md",
"man": "marked-man --version \"git-open $npm_package_version\" --manual \"Git manual\" --section 1 git-open.1.md > git-open.1",
"unit": "bats test/",
"shellcheck": "shellcheck ./git-open",
"lint": "npm run lint:readme && npm run lint:man && npm run lint:editorconfig",
"test": "npm run unit && npm run lint",
"watch": "find . -maxdepth 2 -iname '*bats' -o -iname 'git-open' | entr bats test/",
"prepublishOnly": "npm run man && npm run test"
},
"devDependencies": {
"eclint": "^2.1.0",
"markdownlint-cli": "^0.32.0",
"marked-man": "^0.7.0"
}
}