-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "node-csgo-parser",
"version": "0.0.4",
"description": "Extract Items/Skins/... from raw VDF data files",
"main": "lib/csgo-data-parser.js",
"readmeFilename": "README.md",
"private": false,
"directories": {},
"repository": {
"type": "git",
"url": "git://github.com/Ballrock/node-csgo-parser.git"
},
"dependencies": {
"vdf": "^0.0.2",
"winston": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"chai": "*",
"codeclimate-test-reporter": "^0.1.1",
"istanbul": "^0.4.1",
"jsdoc": "^3.4.0",
"jsdoc-to-markdown": "^1.3.2",
"minami": "^1.1.1",
"mocha": "*"
},
"scripts": {
"example": "node example.js",
"test": "istanbul cover node_modules/mocha/bin/_mocha ./test/*.js -- -R spec ",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose",
"generate-docs-md": "node_modules/.bin/jsdoc2md \"src/csgo-data-parser.js\" > out/docs/api.md",
"compile": "node_modules/.bin/babel --presets es2015 src -d lib",
"prepublish": "npm run compile",
"pretest": "npm run compile"
},
"keywords": [
"csgo",
"skins",
"counter-strike",
"steam",
"valve"
],
"author": "Ballrock",
"license": "ISC"
}