-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
58 lines (58 loc) · 1.18 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
{
"name": "pingman",
"version": "2.0.0",
"description": "A ping wrapper for node with TypeScript",
"main": "dist/src",
"engines": {
"node": ">=10"
},
"scripts": {
"prepublishOnly": "tsc --build --clean && tsc",
"test": "nyc ava",
"build": "tsc --build --clean && tsc",
"postbuild": "copyfiles -u 1 test/parser/samples/*.txt dist/test",
"prepare": "npm run build",
"release": "np"
},
"author": "Govind S",
"license": "MIT",
"homepage": "https://github.com/dopecodez/pingman",
"repository": {
"type": "git",
"url": "git://github.com/dopecodez/pingman.git"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/node": "^18.11.10",
"ava": "^5.1.0",
"copyfiles": "^2.2.0",
"np": "^8.0.4",
"nyc": "^15.1.0",
"typescript": "^4.9.3"
},
"files": [
"dist/src"
],
"types": "dist/src/",
"ava": {
"files": [
"test/*",
"test/builder/*",
"test/parser/*"
],
"timeout": "1m",
"typescript": {
"rewritePaths": {
"test/": "dist/test/"
},
"compile": false
}
},
"keywords": [
"ping",
"node-ping",
"pinger",
"udp",
"pingman"
]
}