forked from nicoespeon/gitgraph.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gitgraph.js",
"version": "1.12.0",
"author": "Nicolas Carlo <[email protected]>",
"description": "A JavaScript library to draw pretty git graphs in the browser",
"contributors": [
{
"name": "Fabien Bernard",
"email": "[email protected]"
}
],
"main": "./src/gitgraph.js",
"types": "./build/gitgraph.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nicoespeon/gitgraph.js"
},
"keywords": [
"git",
"graph",
"javascript"
],
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-concat": "~0.5.0",
"grunt-contrib-copy": "~0.6.0",
"grunt-contrib-jasmine": "~0.5.1",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-uglify": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-express": "~1.4.1",
"grunt-jsdoc": "2.1.0",
"grunt-open": "~0.2.2",
"grunt-string-replace": "~1.0.0",
"jest": "^19.0.2",
"jsdoc-json": "^2.0.0",
"load-grunt-tasks": "~0.6.0",
"typescript": "^2.2.2",
"typescript-formatter": "^5.1.2"
},
"scripts": {
"start": "grunt server",
"test": "npm run test:scripts && npm run test:src",
"test:src": "grunt test",
"test:scripts": "jest scripts",
"doc": "grunt doc",
"dist": "grunt dist",
"release": "grunt release",
"tsd": "grunt tsd"
},
"license": "MIT"
}