-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.72 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "simple-ifconfig",
"description": "a client library for interacting with ifconfig on *nix machines",
"private": false,
"version": "0.2.3",
"author": "Joshua Thomas (http://github.com/brozeph)",
"engine": "node >= 4",
"keywords": [
"ifconfig",
"network",
"broadcast address",
"ipv4",
"ipv6"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:brozeph/simple-ifconfig.git"
},
"main": "./dist",
"scripts": {
"lint": "gulp lint",
"posttest": "nyc report --reporter=text-lcov | coveralls",
"prepare": "gulp build",
"prepublish": "check-node-version --npm \">=4\" || npm run prepare",
"pretest": "gulp clean && gulp lint",
"test": "nyc mocha ./test",
"test-unit": "nyc mocha ./test"
},
"directories": {
"test": "test"
},
"license": "MIT",
"nyc": {
"all": true,
"include": [
"src"
],
"instrument": true,
"report-dir": "./reports",
"reporter": [
"lcov",
"text",
"text-summary"
],
"require": [
"@babel/register"
],
"sourceMap": true
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"@babel/runtime": "^7.11.2",
"debug": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint-plugin-babel": "^5.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^2.6.5",
"mocha": "^8.1.3",
"mock-spawn": "^0.2.6",
"nyc": "^15.1.0"
}
}