-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 740 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 740 Bytes
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
{
"name": "bitbucket-url-from-git",
"version": "1.0.2",
"description": "Parse a bitbucket git url and return the bitbucket repo url",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nyc mocha test.js --reporter spec --require should",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "https://github.com/alex-e-leon/bitbucket-url-from-git"
},
"keywords": [
"bitbucket",
"git",
"url",
"parser"
],
"author": "Alex Leon <alex@leon.st>",
"license": "ISC",
"devDependencies": {
"better-assert": "^1.0.2",
"mocha": "^6.1.3",
"nyc": "^13.3.0",
"should": "^11.1.1",
"standard": "^8.6.0",
"standard-version": "^8.0.1"
}
}