-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
112 lines (112 loc) · 3.59 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
111
112
{
"name": "bleak-detector",
"version": "1.2.2",
"description": "Automatically finds memory leaks in single page web applications.",
"bin": {
"bleak": "./dist/node/cli/bleak.js"
},
"scripts": {
"build": "npm-run-all -p build:node build:viewer -s rollup:viewer rollup:viewer:production make_dist",
"build:node": "tsc -p tsconfig.node.json",
"build:viewer": "tsc",
"rollup:viewer": "rollup -c",
"rollup:viewer:production": "rollup -c --environment BUILD:production",
"test": "npm-run-all -s build nyc:test",
"nyc:test": "nyc mocha --require source-map-support/register build/node/test",
"watch": "npm-run-all -s build -p tsc:viewer:watch tsc:watch rollup:viewer:watch rollup:viewer:production:watch make_dist:watch",
"tsc:watch": "tsc -w",
"tsc:viewer:watch": "tsc -w -p tsconfig.node.json",
"rollup:viewer:watch": "rollup -w -c",
"rollup:viewer:production:watch": "rollup -w -c --environment BUILD:production",
"benchmark": "npm-run-all build:node -s run:benchmark",
"run:benchmark": "node --max-old-space-size=8192 build/node/benchmarks/benchmark.js",
"make_dist": "node build/node/scripts/make_dist.js",
"make_dist:watch": "node build/node/scripts/make_dist.js --watch",
"prepare": "npm-run-all build",
"test:travis": "npm-run-all -s test coveralls",
"coveralls": "nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/plasma-umass/BLeak.git"
},
"keywords": [
"memory",
"leak",
"memory",
"leaks",
"bugs",
"performance",
"bug",
"detection",
"debugging"
],
"author": "John Vilk <jvilk@cs.umass.edu>",
"license": "MIT",
"homepage": "https://github.com/plasma-umass/BLeak",
"devDependencies": {
"@types/ace": "~0.0.39",
"@types/babel-core": "~6.25.1",
"@types/benchmark": "~1.0.30",
"@types/bootstrap": "~3.3.37",
"@types/d3": "~4.12.0",
"@types/esprima": "~4.0.2",
"@types/estree": "~0.0.39",
"@types/express": "~4.16.0",
"@types/htmlparser2": "~3.7.29",
"@types/jquery": "~3.3.0",
"@types/mocha": "~5.2.2",
"@types/node": "~10.3.3",
"@types/progress": "~2.0.1",
"@types/react": "~16.3.17",
"@types/react-dom": "~16.0.3",
"@types/ws": "~5.1.2",
"@types/yargs": "~11.0.0",
"benchmark": "~2.1.4",
"brace": "~0.11.0",
"coveralls": "~3.0.0",
"d3": "~4.13.0",
"microtime": "~2.1.6",
"mocha": "~5.2.0",
"npm-run-all": "~4.1.3",
"nyc": "~12.0.2",
"react": "~16.4.1",
"react-ace": "~6.1.1",
"react-dom": "~16.2.0",
"react-treeview": "~0.4.7",
"rimraf": "~2.6.2",
"rollup": "~0.60.4",
"rollup-plugin-buble": "~0.19.2",
"rollup-plugin-commonjs": "~9.1.3",
"rollup-plugin-node-resolve": "~3.3.0",
"rollup-plugin-replace": "~2.0.0",
"rollup-plugin-sourcemaps": "~0.4.2",
"rollup-plugin-uglify": "~4.0.0",
"source-map-support": "~0.5.3",
"typescript": "~2.9"
},
"dependencies": {
"astring": "~1.3.0",
"babel-core": "~6.26.0",
"babel-polyfill": "~6.26.0",
"babel-preset-env": "~1.7.0",
"body-parser": "~1.18.3",
"buble": "~0.19.3",
"chrome-debugging-client": "~0.6.2",
"chrome-devtools-frontend": "~1.0.533100",
"error-stack-parser": "~2.0.1",
"esprima": "~4.0.0",
"express": "~4.16.3",
"htmlparser2": "~3.9.2",
"mitmproxy": "~2.1.1",
"progress": "~2.0.0",
"source-map": "~0.6.1",
"tslib": "~1.9.0",
"ws": "~5.2.0",
"yargs": "~11.0.0"
},
"optionalDependencies": {
"bufferutil": "~3.0.2",
"utf-8-validate": "~4.0.2"
}
}