-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
110 lines (110 loc) · 3.28 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
104
105
106
107
108
109
110
{
"name": "bleak-detector",
"version": "1.0.0",
"description": "Automatically finds memory leaks in single page web applications.",
"main": "dist/index.js",
"scripts": {
"build": "npm-run-all -p build:node build:viewer -s rollup:viewer",
"build:node": "tsc -p tsconfig.node.json",
"build:viewer": "tsc",
"rollup:viewer": "rollup -c",
"test": "npm-run-all -s build nyc:test",
"nyc:test": "nyc mocha --require source-map-support/register build/node/test",
"watch": "npm-run-all -p build:node build:viewer -p tsc:viewer:watch tsc:watch rollup:viewer:watch",
"tsc:watch": "tsc -w",
"tsc:viewer:watch": "tsc -w -p tsconfig.node.json",
"rollup:viewer:watch": "rollup -w -c",
"benchmark": "npm-run-all build:node -s run:benchmark",
"run:benchmark": "node --max-old-space-size=8192 build/node/benchmarks/benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/plasma-umass/BLeak.git"
},
"keywords": [
"memory",
"leak",
"memory",
"leaks",
"bugs",
"performance",
"bug",
"detection",
"debugging"
],
"author": "John Vilk <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/plasma-umass/BLeak",
"devDependencies": {
"@types/ace": "^0.0.36",
"@types/babel-core": "^6.25.1",
"@types/benchmark": "^1.0.30",
"@types/body-parser": "^1.16.5",
"@types/bootstrap": "^3.3.37",
"@types/d3": "^4.12.0",
"@types/error-stack-parser": "^1.3.18",
"@types/esprima": "^2.1.33",
"@types/estree": "0.0.34",
"@types/express": "^4.0.37",
"@types/extract-zip": "^1.6.2",
"@types/glob": "^5.0.30",
"@types/htmlparser2": "^3.7.29",
"@types/jquery": "^3.3.0",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/papaparse": "^4.1.30",
"@types/progress": "^2.0.1",
"@types/react": "^16.0.36",
"@types/react-dom": "^16.0.3",
"@types/ws": "^3.0.2",
"@types/yargs": "~11.0.0",
"benchmark": "^2.1.4",
"brace": "^0.11.0",
"d3": "^4.13.0",
"glob": "^7.1.2",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"react": "^16.2.0",
"react-ace": "^5.9.0",
"react-dom": "^16.2.0",
"react-treeview": "^0.4.7",
"rimraf": "^2.6.2",
"rollup": "^0.55.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"source-map-support": "^0.5.3",
"typescript": "^2.7.1"
},
"dependencies": {
"astring": "^1.0.5",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.17.2",
"buble": "^0.15.2",
"chrome-debugging-client": "^0.4.2",
"chrome-devtools-frontend": "^1.0.533100",
"error-stack-parser": "^2.0.1",
"esprima": "^4.0.0",
"express": "^4.15.4",
"extract-zip": "^1.6.0",
"htmlparser2": "^3.9.2",
"locate-java-home": "^0.1.6",
"microtime": "^2.1.6",
"mitmproxy": "~1.6.0",
"papaparse": "^4.3.6",
"progress": "^2.0.0",
"source-map": "~0.6.0",
"tslib": "^1.9.0",
"ws": "^3.1.0",
"yargs": "~11.0.0"
},
"optionalDependencies": {
"bufferutil": "^3.0.2",
"utf-8-validate": "^3.0.3"
}
}