-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 728 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 728 Bytes
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
{
"name": "rustcon",
"version": "0.0.3",
"description": "RCON service & log parser for Rust",
"main": "index.js",
"scripts": {
"test": "jasmine",
"build": "babel lib --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mileszim/rustcon.git"
},
"keywords": [
"rcon",
"rust"
],
"author": "Miles Zimmerman",
"license": "MIT",
"bugs": {
"url": "https://github.com/mileszim/rustcon/issues"
},
"homepage": "https://github.com/mileszim/rustcon#readme",
"dependencies": {
"sourcecon": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"jasmine": "^2.4.1"
}
}