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
65 lines (65 loc) · 1.71 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.71 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@gitgraph/react",
"version": "1.6.0",
"description": "Draw pretty git graphs in the browser, with React",
"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": [
"react",
"git",
"graph",
"javascript"
],
"homepage": "https://github.com/nicoespeon/gitgraph.js#readme",
"publishConfig": {
"access": "public"
},
"main": "./lib/bundle.umd.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"prewatch": "rimraf ./lib",
"watch": "tsc -w",
"build": "run-s build:*",
"build:clear": "rimraf ./lib",
"build:tsc": "tsc",
"build:bundle": "rollup -c rollup.config.js",
"build:browserify": "browserify ./lib/bundle.umd.js -o ./lib/bundle.js",
"build:minify": "uglifyjs -c -m -o ./lib/bundle.min.js -- ./lib/bundle.js",
"prepare": "npm run build",
"version": "auto-changelog -p -l 0 --tag-prefix @gitgraph/react@ && git add CHANGELOG.md"
},
"dependencies": {
"@gitgraph/core": "1.5.0"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"@types/node": "9.4.6",
"@types/react": "16.8.8",
"@types/react-dom": "16.8.3",
"auto-changelog": "1.12.1",
"browserify": "14.5.0",
"npm-run-all": "4.1.2",
"react": "16.8.4",
"react-dom": "16.8.4",
"rimraf": "2.6.2",
"rollup": "0.51.8",
"uglify-es": "3.3.9"
}
}