-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
43 lines (43 loc) · 1002 Bytes
/
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
{
"name": "leakage",
"version": "0.5.0",
"description": "Memory leak testing for node. Javascript memory footprinting using your favorite test runner.",
"main": "lib/index",
"scripts": {
"test": "mocha --timeout 60000 test/",
"posttest": "standard src/**/*.js test/**/*.js"
},
"author": "Andy Wermke <[email protected]>",
"contributors": [
"Brandon Mills (https://github.com/btmills)"
],
"license": "MIT",
"repository": "andywer/leakage",
"bugs": "https://github.com/andywer/leakage/issues",
"keywords": [
"memory leak",
"testing",
"node",
"javascript",
"v8",
"heap"
],
"files": [
"lib/"
],
"engines": {
"node": ">= 8.0"
},
"dependencies": {
"@aidemaster/node-memwatch": "^1.0.5",
"es6-error": "^4.0.2",
"minimist": "^1.2.0",
"pretty-bytes": "^4.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^5.2.0",
"standard": "^11.0.1"
}
}