-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "git_aliases",
"version": "2.0.1",
"description": "Create aliases for git commands",
"main": "index.js",
"scripts": {
"test": "standard --fix",
"build": "pkg index.js --target node-latest-linux-x64,node-latest-macos-x64,node-latest-win-x64 --output output/git_aliases",
"postinstall": "node index.js"
},
"keywords": [
"alias",
"git",
"aliases",
"windows",
"mac",
"linux"
],
"author": "Fernando M. Tenório <[email protected]> (https://blog.dotenorio.com)",
"contributors": [
"Vinicius Rufine <[email protected]> (https://rufine.com.br)",
"Heitor Dobeis <[email protected]> (https://dobeis.com)",
"Bruno Russi Lautenschlager <[email protected]> (https://brunoxd13.github.io/)"
],
"license": "MIT",
"devDependencies": {
"pkg": "^4.4.9",
"standard": "^14.3.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotenorio/git_aliases.git"
},
"bugs": {
"url": "https://github.com/dotenorio/git_aliases/issues"
},
"homepage": "https://github.com/dotenorio/git_aliases#readme",
"dependencies": {
"cryptiles": "^4.1.3"
}
}