forked from l3laze/vdf-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.42 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
{
"author": "Rossen Georgiev <[email protected]>",
"contributors": [
{
"name": "Tom Shaver",
"email": "[email protected]",
"url": "https://github.com/l3laze"
},
{
"name": "Matthew 'Gamemaster' Stanley",
"email": "[email protected]",
"url": "https://github.com/mstan"
}
],
"name": "simple-vdf-mstan",
"description": "Package for (de)serialization of Valve's KeyValue format (VDF)",
"version": "1.3.1",
"license": "MIT",
"homepage": "https://github.com/mstan/vdf-parser",
"readmeFilename": "README.md",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mstan/vdf-parser.git"
},
"bugs": {
"url": "https://github.com/mstan/vdf-parser/issues"
},
"scripts": {
"lint": "yarn standard",
"test": "mocha",
"nyc": "nyc mocha",
"htmlcov": "nyc report --reporter=html",
"textcov": "nyc report --reporter=text-lcov > coverage.lcov",
"coverage": "yarn htmlcov && yarn textcov",
"tandc": "yarn nyc && yarn coverage",
"codecov": "codecov",
"codacy": "cat coverage.lcov | codacy-coverage"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.1.2",
"cli": "^1.0.1",
"codacy-coverage": "^2.1.0",
"codecov": "^3.0.0",
"mocha": "^5.0.1",
"nyc": "^11.4.1",
"standard": "^11.0.0"
},
"optionalDependencies": {},
"keywords": [
"vdf",
"keyvalue",
"steam",
"valve"
]
}