-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
80 lines (80 loc) · 2.13 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
{
"name": "bleak-detector",
"version": "1.0.0",
"description": "Automatically finds memory leaks in single page web applications.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "npm-run-all -s build nyc:test",
"nyc:test": "nyc mocha --require source-map-support/register build/test"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/jvilk/deuterium-oxide.git"
},
"keywords": [
"memory",
"leak",
"memory",
"leaks",
"bugs",
"performance",
"bug",
"detection",
"debugging"
],
"author": "John Vilk <[email protected]>",
"license": "MIT",
"homepage": "https://bitbucket.org/jvilk/deuterium-oxide#readme",
"devDependencies": {
"@types/babel-core": "^6.25.1",
"@types/benchmark": "^1.0.30",
"@types/body-parser": "^1.16.5",
"@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/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/papaparse": "^4.1.30",
"@types/source-map": "^0.5.1",
"@types/ws": "^3.0.2",
"@types/yargs": "^8.0.2",
"benchmark": "^2.1.4",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"source-map-support": "^0.5.3",
"typescript": "^2.4.2"
},
"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",
"glob": "^7.1.1",
"htmlparser2": "^3.9.2",
"locate-java-home": "^0.1.6",
"microtime": "^2.1.6",
"mitmproxy": "^1.3.0",
"papaparse": "^4.3.6",
"source-map": "^0.5.6",
"ws": "^3.1.0",
"yargs": "^8.0.2"
},
"optionalDependencies": {
"bufferutil": "^3.0.2",
"utf-8-validate": "^3.0.3"
}
}