-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 778 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 778 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
{
"name": "node-netstat",
"version": "1.9.0",
"description": "programmatic netstat utility",
"main": "index.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/danielkrainas/node-netstat"
},
"scripts": {
"test": "node node_modules/grunt-cli/bin/grunt test"
},
"dependencies": {
"is-wsl": "^1.1.0"
},
"keywords": [
"netstat",
"utility"
],
"author": {
"name": "Daniel Krainas",
"email": "me@danielkrainas.com"
},
"license": "Unlicense",
"devDependencies": {
"chai": "^4.3.10",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-jshint": "^3.2.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^10.2.0",
"sinon": "^16.1.0",
"sinon-chai": "^3.7.0"
}
}