This repository was archived by the owner on Jun 25, 2022. 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
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
{
"name": "key-values-ts",
"version": "0.5.4",
"description": "A TypeScript parser for the KeyValues data format (also called Valve Data Format).",
"keywords": [
"KeyValues",
"Valve Data Format",
"VDF",
"TypeScript",
"parser"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tim Jentzsch",
"license": "MIT",
"repository": "github:key-values/key-values-ts",
"bugs": {
"url": "https://github.com/key-values/key-values-ts/issues"
},
"homepage": "https://github.com/key-values/key-values-ts#readme",
"engines": {
"node": ">=12",
"yarn": "^1.16.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint \"src/**/*.ts\"",
"format": "eslint \"src/**/*.ts\" --fix",
"prepublish": "yarn lint && rm -rf lib && yarn build && yarn test",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "26.0.0",
"@typescript-eslint/eslint-plugin": "4.5.0",
"@typescript-eslint/parser": "4.5.0",
"eslint": "7.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.0.1",
"prettier": "2.1.2",
"ts-jest": "26.1.0",
"typescript": "4.0.3"
},
"dependencies": {
"typescript-parsec": "0.3.2"
},
"husky": {
"hooks": {
"pre-commit": "env FORCE_COLOR=1 yarn lint",
"pre-push": "env FORCE_COLOR=1 yarn build"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/tests/"
]
}
}