-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 851 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 851 Bytes
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": "fast-blocked-at",
"version": "0.0.6",
"description": "Detect event loop blockages and get a stack trace; fast enough for production.",
"main": "index.js",
"scripts": {
"test": "tap --no-check-coverage",
"install": "node-gyp rebuild"
},
"author": "Keyhan Vakil <kvakil@npm.kvakil.me>",
"license": "MPL-2.0",
"gypfile": true,
"devDependencies": {
"tap": "^16.3.0"
},
"files": [
"LICENSE",
"binding.gyp",
"index.d.ts",
"index.js",
"native.cc",
"package.json",
"package-lock.json",
"README.md"
],
"readme": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/watershedclimate/fast-blocked-at"
},
"homepage": "https://github.com/watershedclimate/fast-blocked-at",
"keywords": [
"performance",
"block",
"event",
"loop"
]
}