-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "is-github-url",
"version": "1.2.2",
"description": "Check if a passed string is a valid GitHub URL",
"main": "index.js",
"scripts": {
"test": "mocha --reporter nyan",
"tdd": "npm test -- --watch",
"release": "npm version ${BUMP:-\"patch\"} --no-git-tag-version && git add package.json && git commit -m \":octocat: Bump to $(cat package.json | jq -r .version)\" && git tag $(cat package.json | jq -r .version) && git push && git push --tags && npm publish"
},
"repository": "alferov/is-github-url",
"keywords": [
"gh",
"github",
"git",
"valid",
"url",
"string"
],
"devDependencies": {
"chai": "^3.2.0",
"eslint": "^1.4.1",
"mocha": "^2.3.0"
},
"author": {
"name": "Philipp Alferov",
"email": "[email protected]"
},
"engines": {
"node": ">=0.10.0"
},
"files": [
"index.js"
],
"license": "MIT"
}