-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.87 KB
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
{
"name": "eimspyr",
"version": "0.6.1",
"description": "Query information from a running Source Dedicated Server (SRCDS) using UDP/IP packets.",
"keywords": [
"A2S_INFO",
"dedicated server",
"game server",
"source",
"SRCDS",
"UDP"
],
"homepage": "https://github.com/Stassi/eimspyr#readme",
"license": "MIT",
"author": "Andreas Stassivik <andreas@stassi.net> (https://github.com/Stassi)",
"files": [
"bin",
"lib",
"!lib/*.cjs.d*"
],
"main": "./lib/eimspyr.cjs",
"bin": "./bin/cli.cjs",
"type": "module",
"types": "./lib/eimspyr.d.ts",
"exports": {
"import": "./lib/eimspyr.mjs",
"require": "./lib/eimspyr.cjs"
},
"repository": "github:Stassi/eimspyr",
"scripts": {
"build": "rollup -c",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"prepublishOnly": "npm run build",
"test": "npm run test:unit && npm run format:check && package-check",
"test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"commander": "^9.0.0",
"dechainer": "^0.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"rollup": "^2.67.3",
"rollup-plugin-ts": "^2.0.5",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": "^14.19.0 || ^16.14.0 || >=17.5.0",
"npm": "^6.14.16 || ^7.24.2 || >=8.5.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64"
],
"jest": {
"globals": {
"ts-jest": {
"useESM": true
}
},
"preset": "ts-jest/presets/default-esm"
},
"prettier": {
"endOfLine": "auto",
"semi": false,
"singleQuote": true
},
"sideEffects": false
}