-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 984 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
{
"name": "heap-snapshot-sanitizer",
"version": "1.0.1",
"description": "Stream transform implementation to sanitize heap snapshot.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"cover": "nyc --reporter=lcov npm test && nyc report",
"coverage": "npm run cover",
"lint": "eslint ./lib/**/*.js test",
"pretest": "npm run lint",
"test": "mocha test --recursive --reporter=spec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/sumeetkakkar/heap-snapshot-sanitizer.git"
},
"keywords": [
"heapsnapshot",
"heap",
"sanitizer",
"stream",
"transform"
],
"author": "Sumeet Kakkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sumeetkakkar/heap-snapshot-sanitizer/issues"
},
"homepage": "https://github.com/sumeetkakkar/heap-snapshot-sanitizer#readme",
"devDependencies": {
"eslint": "^7.1.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1"
}
}