forked from spiermar/d3-flame-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "d3-flame-graph",
"version": "0.4.2",
"description": "A d3.js library to produce flame graphs.",
"main": "src/d3.flame.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "mocha --reporter nyan"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spiermar/d3-flame-graph.git"
},
"keywords": [
"flame",
"graph",
"flamegraph",
"performance",
"d3",
"d3js"
],
"author": "Martin Spier <spiermar@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/spiermar/d3-flame-graph/issues"
},
"homepage": "https://github.com/spiermar/d3-flame-graph#readme",
"devDependencies": {
"browser-sync": "^2.9.10",
"browserify": "^11.2.0",
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jshint": "^1.11.2",
"gulp-minify-css": "^1.2.1",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.1",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3"
},
"dependencies": {
"d3": "^3.5.6"
}
}