-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "flamegraph",
"version": "1.3.0",
"description": "Generates flamegraphs with Node.js or in the browser",
"main": "./dist/flamegraph.js",
"browserify": {
"transform": [
"hbsfy",
"brfs"
]
},
"browser": {
"./lib/svg-template.js": "./lib/svg-client-template.js"
},
"bin": {
"flamegraph": "bin/flamegraph.js"
},
"files": [
"bin",
"dist",
"from-stream.js",
"LICENSE",
"REAMDE.md"
],
"scripts": {
"docme": "docme README.md -- --configure .jsdocrc",
"test-main": "set -e; for t in test/*.js; do node $t; done",
"test-0.10": "nave use 0.10 npm run test-main",
"test-0.12": "nave use 0.12 npm run test-main",
"test-4": "nave use 4 npm run test-main",
"test-6": "nave use 6 npm run test-main",
"test-all": "npm run test-main && npm run test-0.10 && npm run test-0.12 && npm run test-4 && npm run test-6",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else npm run test-main; fi",
"watch": "watchify -d web/main.js -o web/bundle.js",
"bundle": "browserify web/main.js | uglifyjs > web/bundle.js",
"dist:bundle": "browserify ./index.js --standalone flamegraph > ./dist/flamegraph.js",
"dist:minify": "cat ./dist/flamegraph.js | uglifyjs > ./dist/flamegraph.min.js",
"dist": "npm run dist:bundle && npm run dist:minify"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/flamegraph.git"
},
"homepage": "https://github.com/thlorenz/flamegraph",
"dependencies": {
"concat-stream": "~1.4.6",
"minimist": "~1.2.0",
"through2": "~0.6.0"
},
"devDependencies": {
"cpuprofilify": "~1.0.0",
"handlebars": "~2.0.0-alpha.4",
"brfs": "~1.0.2",
"browserify": "~16.2.3",
"debounce": "^1.0.0",
"hbsfy": "~2.0.0",
"nave": "~2.2.3",
"resolve-jit-symbols": "~0.3.4",
"stream-array": "~1.0.1",
"tape": "~1.0.4",
"uglify-js": "~3.4.9",
"uniwheel": "^0.1.2",
"watchify": "~2.1.1",
"readable-stream": "~1.0.27-1",
"trace-filter-internals": "^0.1.0",
"xtend": "~4.0.0"
},
"keywords": [
"flamegraph",
"flamegraphs",
"svg",
"stack",
"callgraph"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/flamegraph/blob/master/LICENSE"
},
"engine": {
"node": ">=0.10"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/21..latest",
"firefox/nightly",
"chrome/27..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}