-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 833 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 833 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
32
33
34
35
{
"name": "git-links",
"version": "1.0.0",
"description": "Normalize git URLs to shorthand format and denormalize to repository, branch or pull request links.",
"keywords": [
"git",
"github",
"gitlab",
"bitbucket",
"normalize",
"shorthand"
],
"license": "MIT",
"author": "Andy Wermke (https://github.com/andywer)",
"repository": "github:shuttersh/git-links",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "ava-ts",
"posttest": "tslint --project .",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"ava": "^0.25.0",
"ava-ts": "^0.24.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^2.9.2"
},
"files": [
"dist/**"
]
}