-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "vdfplus",
"version": "1.0.0",
"description": "Converted Valve's KeyValue format to JSON and back",
"main": "lib/vdfplus.js",
"bin": "lib/vdfplus.cli.js",
"types": "lib/vdfplus.d.ts",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf lib/",
"build": "npm run clean && npm run tsc && npm run web",
"web": "browserify lib/vdfplus.js -s VDF > lib/vdfplus.web.js",
"postweb": "uglifyjs lib/vdfplus.web.js -c -o lib/vdfplus.web.min.js",
"tsc": "tsc",
"tsc:w": "tsc -w",
"test": "ts-node node_modules/tape/bin/tape test/**/*.ts | tap-summary",
"testcli": "ts-node node_modules/tape/bin/tape test/vdfplus.cli.test.ts",
"test:raw": "ts-node node_modules/tape/bin/tape test/**/*.ts"
},
"keywords": [
"valve",
"steam",
"vdf",
"keyvalue",
"json",
"cli"
],
"directories": {
"example": "examples",
"test": "test"
},
"author": "David Koch <[email protected]>",
"url": "https://github.com/RoyalBingBong/vdfplus/issues",
"homepage": "https://github.com/RoyalBingBong/vdfplus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RoyalBingBong/vdfplus.git"
},
"license": "ISC",
"devDependencies": {
"@types/commander": "^2.9.2",
"@types/mkdirp": "^0.5.1",
"@types/node": "^8.0.28",
"@types/rimraf": "^2.0.2",
"@types/tape": "^4.2.30",
"browserify": "^14.4.0",
"rimraf": "^2.6.2",
"tap-summary": "^4.0.0",
"tape": "^4.8.0",
"ts-node": "^3.3.0",
"typescript": "^2.5.2",
"uglify-es": "^3.1.1"
},
"dependencies": {
"commander": "^2.11.0",
"mkdirp": "^0.5.1"
}
}