-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.73 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
{
"name": "easy-keyvalues",
"version": "1.2.7",
"description": "Parse Valve KeyValues Format and easy to use in nodejs or browser.",
"main": "dist/node.js",
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"scripts": {
"watch": "rollup -c -w --bundleConfigAsCjs",
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest --verbose",
"test:badges": "jest --verbose && jest-coverage-badges",
"test:kv": "jest --coverage=false -- __tests__/KeyValues.test.ts",
"test:kv3": "jest --coverage=false -- __tests__/KeyValues3.test.ts __tests__/KeyValues3_subclass.test.ts",
"lint:prettier": "prettier --check .",
"write-prettier": "prettier . --write --config .prettierrc.json"
},
"author": "RobinCode",
"homepage": "https://github.com/RobinCodeX/easy-keyvalues",
"repository": {
"type": "git",
"url": "git+https://github.com/RobinCodeX/easy-keyvalues.git"
},
"keywords": [
"KeyValues",
"KeyValues3",
"Valve KeyValues",
"Source2 KeyValues3"
],
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-typescript": "12.1.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"iconv-lite": "^0.6.3",
"jest": "^29.7.0",
"jest-coverage-badges": "^1.1.2",
"prettier": "^3.4.1",
"rollup": "4.28.0",
"rollup-plugin-dts": "^6.1.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "5.7.2"
}
}