-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
70 lines (70 loc) · 1.91 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
{
"author": "danielzzz <[email protected]> (http://daniel.zelisko.net)",
"scripts": {
"test": "grunt test",
"lint": "grunt eslint",
"coverage": "grunt coverage"
},
"contributors": [
"Mond Wan <[email protected]>",
"dougluce <[email protected]>",
"weihua44",
"GermanBluefox",
"mabukar",
"microacup <[email protected]>",
"Andrew Fadeev",
"Joshua Pruitt <[email protected]>",
"Stephan van Rooij <[email protected]> (http://svrooij.nl)",
"Krispin Schulz <[email protected]> (http://kr1sp1n.io)",
"Kathy Hill",
"mrMuppet",
"Adam Heath <[email protected]> (http://www.adamheath.me)",
"BlessJah <[email protected]>",
"jritsema"
],
"name": "ping",
"description": "a simple wrapper for ping",
"version": "0.4.4",
"homepage": "http://github.com/danielzzz/node-ping",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/danielzzz/node-ping.git"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@types/glob": "^8.1.0",
"chai": "4.2.0",
"coveralls": "^3.1.1",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-eslint": "^7.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"glob": "^7.2.3",
"grunt": "^1.5.3",
"grunt-coveralls": "^2.0.0",
"grunt-eslint": "^24.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-nyc-mocha": "^1.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sinon": "9.2.2"
},
"main": "index.js",
"files": [
"index.js",
"lib/**/*",
"lib/*"
]
}