-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "csgo-float",
"version": "0.2.0",
"description": "CS:GO Float values",
"main": "dist",
"scripts": {
"start": "babel-node example",
"build": "rm -rf dist && mkdir dist && babel src -o dist/index.js",
"lint": "eslint src example.js protos/*.js",
"protos": "babel-node protos/update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apercu/csgo-float.git"
},
"keywords": [
"csgo",
"csgofloat",
"float",
"market",
"skinsbazaar"
],
"author": "Balthazar Gronon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Apercu/csgo-float/issues"
},
"homepage": "https://github.com/Apercu/csgo-float#readme",
"eslintConfig": {
"extends": ["zavatta"],
"rules": {
"camelcase": 0,
"no-console": 0,
"no-sync": 0
}
},
"dependencies": {
"protobufjs": "^4.1.3",
"q": "^1.4.1",
"steam": "^1.4.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.10.0",
"eslint-config-zavatta": "^4.2.0"
}
}