forked from srmelody/node-offworld-heapdumper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "offworld-heapdumper",
"description": "An NPM module that makes it easy to save heapdumps to an external storage service (starting with Amazon S3).",
"version": "0.1.2",
"dependencies": {
"aws-sdk": "^2.1.14",
"heapdump": "^0.3.7",
"moment": "^2.9.0",
"s3-upload-stream": "^1.0.7",
"tmp": "0.0.24",
"underscore": "^1.8.2"
},
"scripts": {
"lint": "jshint .",
"checkStyle": "jscs .",
"pretest": "npm run-script lint",
"test": "istanbul cover ./node_modules/.bin/_mocha specs",
"nctest": "./node_modules/.bin/_mocha specs",
"posttest": "istanbul check-coverage --statements 80 --branches 70 --functions 80 --lines 80 && rm -rf coverage",
"doc": "jsdoc2md --src index.js destinations/S3.js > reference.md",
"prepublish": "npm test && npm prune"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "Adam Creeger <adamcreeger@gmail.com>",
"license": "ISC",
"devDependencies": {
"chai": "^2.1.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.2",
"jscs": "^1.6.1",
"jsdoc" : "3.4.0",
"jsdoc-to-markdown": "^1.3.7",
"jshint": "^2.5.6",
"mocha": "^1.21.4",
"mocha-clean": "^0.4.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0",
"taffydb-jsdoc": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git@github.com:Factr/node-offworld-heapdumper.git"
}
}