UNPKG

997 BJSONView Raw
1{
2 "name": "github-url-to-object",
3 "version": "2.2.3",
4 "description": "Extract user, repo, and other interesting properties from GitHub URLs",
5 "main": "index.js",
6 "scripts": {
7 "test": "mocha && standard",
8 "build": "browserify index.js --standalone gh > dist/gh.js",
9 "deploy": "npm run build && git subtree push --prefix dist origin gh-pages && open https://zeke.github.io/github-url-to-object"
10 },
11 "website": "https://zeke.github.io/github-url-to-object",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/zeke/github-url-to-object"
15 },
16 "keywords": [
17 "github",
18 "url",
19 "repo"
20 ],
21 "author": "zeke",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/zeke/github-url-to-object/issues"
25 },
26 "dependencies": {
27 "is-url": "^1.1.0"
28 },
29 "devDependencies": {
30 "browserify": "^13.0.1",
31 "mocha": "^2.5.3",
32 "standard": "^7.1.2",
33 "uglify-js": "^2.4.15"
34 },
35 "standard": {
36 "ignore": [
37 "dist"
38 ]
39 }
40}