This repository was archived by the owner on Dec 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "sourcemeter",
"version": "1.0.0",
"description": "Query information from a running Source Dedicated Server (SRCDS) using UDP/IP packets.",
"keywords": [
"deprecated"
],
"homepage": "https://github.com/Stassi/sourcemeter#readme",
"license": "MIT",
"author": "Andreas Stassivik <andreas@stassi.net> (https://github.com/Stassi)",
"files": [
"lib/**/*"
],
"main": "./lib/sourcemeter.mjs",
"type": "module",
"types": "./lib/sourcemeter.d.ts",
"exports": "./lib/sourcemeter.mjs",
"repository": "github:Stassi/sourcemeter",
"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": {
"dechainer": "^0.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@skypack/package-check": "^0.2.2",
"@types/jest": "^27.0.3",
"jest": "^27.4.3",
"prettier": "2.5.1",
"rollup": "^2.60.2",
"rollup-plugin-ts": "^2.0.4",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
},
"engines": {
"node": "^14.18.2 || ^16.13.1 || >=17.2.0",
"npm": "^6.14.15 || ^7.24.2 || >=8.2.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
}