-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
84 lines (84 loc) · 1.78 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
75
76
77
78
79
80
81
82
83
84
{
"name": "local-devices",
"description": "Find devices connected to the current local network.",
"version": "4.0.0",
"author": "Dylan Piercey <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "standard --verbose | snazzy",
"test": "jest",
"pretest": "npm run lint",
"watch-test": "jest --watch"
},
"types": "./src/index.d.ts",
"dependencies": {
"get-ip-range": "^2.1.0",
"ip": "^1.1.5",
"mz": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"all-contributors-cli": "^6.9.3",
"coveralls": "^3.0.7",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"snazzy": "^8.0.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">=10.17"
},
"homepage": "https://github.com/DylanPiercey/local-devices",
"bugs": "https://github.com/DylanPiercey/local-devices/issues",
"keywords": [
"arp",
"devices",
"ip",
"local",
"mac",
"mac-address",
"scan"
],
"repository": {
"type": "git",
"url": "https://github.com/DylanPiercey/local-devices"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"git update-index --again",
"jest --findRelatedTests"
]
},
"jest": {
"setupFiles": [
"./jest-setup.js"
]
},
"standard": {
"globals": [
"jest",
"describe",
"beforeAll",
"afterAll",
"beforeEach",
"afterEach",
"it",
"expect"
]
}
}