-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 737 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 737 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
{
"name": "dtrace-provider",
"version": "0.8.8",
"description": "Native DTrace providers for node.js applications",
"keywords": [
"dtrace",
"usdt"
],
"homepage": "https://github.com/chrisa/node-dtrace-provider#readme",
"license": "BSD-2-Clause",
"author": {
"name": "Chris Andrews",
"email": "chris@nodnol.org"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisa/node-dtrace-provider.git"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"nan": "^2.14.0"
},
"devDependencies": {
"tap": "0.7.1"
},
"scripts": {
"install": "node-gyp rebuild || node suppress-error.js",
"test": "tap test/*.test.js"
},
"main": "./dtrace-provider.js"
}