forked from nicoespeon/gitgraph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
42
43
44
45
46
47
{
"name": "@gitgraph/node",
"version": "0.1.18",
"description": "Draw pretty git graphs in the terminal, with node.js",
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
"contributors": [
{
"name": "Fabien Bernard",
"email": "fabien0102@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicoespeon/gitgraph.js.git"
},
"bugs": {
"url": "https://github.com/nicoespeon/gitgraph.js/issues"
},
"keywords": [
"node",
"git",
"graph",
"javascript"
],
"homepage": "https://github.com/nicoespeon/gitgraph.js#readme",
"publishConfig": {
"access": "public"
},
"main": "./src/index.ts",
"scripts": {
"example:default": "ts-node examples/default.ts",
"example:branches": "ts-node examples/branches.ts",
"version": "auto-changelog -p -l 0 --tag-prefix @gitgraph/node@ && git add CHANGELOG.md"
},
"dependencies": {
"@gitgraph/core": "1.5.0",
"chalk": "2.4.1",
"lodash": "4.17.13"
},
"devDependencies": {
"@types/lodash": "4.14.110",
"@types/node": "9.4.6",
"auto-changelog": "1.12.1",
"ts-node": "6.1.1"
}
}