-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.53 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@node-steam/vdf",
"version": "2.2.0",
"description": "Module to convert Valve's KeyValue format to JSON and back",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/node-steam/vdf",
"bugs": "https://github.com/node-steam/vdf/issues",
"repository": {
"url": "https://github.com/node-steam/vdf.git",
"type": "git"
},
"author": "N|Steam",
"keywords": [
"steam",
"valve",
"vdf",
"typescript",
"es6",
"es7"
],
"files": [
"lib/*.js",
"lib/*.d.ts",
"example/*.js"
],
"contributors": [
{
"name": "Silas Rech",
"email": "silas.rech@protonmail.com",
"url": "https://lenovouser.me"
}
],
"runkitExampleFilename": "example/runkit.js",
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"scripts": {
"compile": "tsc -p .",
"test": "yarn compile && TS_NODE_PROJECT=test/tsconfig.json ava",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"docs": "typedoc src/index.ts",
"prepublish": "yarn lint && yarn test && yarn docs"
},
"ava": {
"files": [
"test/*.ts",
"test/**/*.ts"
],
"concurrency": 10,
"verbose": true,
"failFast": true,
"failWithoutAssertions": false,
"powerAssert": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
]
},
"devDependencies": {
"@types/node": "^15",
"ava": "^3",
"ts-node": "^10",
"tsconfig-paths": "^3",
"typescript": "^4"
}
}