-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "gc-trace-parser-csv",
"version": "1.0.2",
"description": "Parser for the V8's -gc_trace option with export to csv",
"main": "index.js",
"bin": {
"gc-trace-parser-csv": "./bin/gc-trace-parser-csv.js"
},
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"csv-stringify": "^1.0.4",
"underscore": "^1.8.3",
"yargs": "^4.8.1"
},
"scripts": {
"compile": "babel --source-maps -d lib/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/mocha/bin/mocha ./test/*.js",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.js",
"changelog": "conventional-changelog -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwadhwani/gc-trace-parser-csv.git"
},
"author": "Jayesh Wadhwani <jwadhwani@gmail.com>",
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jwadhwani/gc-trace-parser-csv/issues"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"istanbul": "^0.4.5",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0"
},
"keywords": [
"v8",
"performance",
"memory leaks",
"garbage collection",
"trace parser",
"csv"
],
"homepage": "https://github.com/jwadhwani/gc-trace-parser-csv#readme"
}