-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.43 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": {
"name": "Simon Schick",
"email": "[email protected]",
"url": "https://github.com/SimonSchick"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"name": "elite-dangerous-utils",
"version": "2.0.0",
"description": "Collection of utilities to interactive with the Elite: Dangerous game client and the 'Companion' App API",
"dependencies": {
"request": "^2.88.2"
},
"devDependencies": {
"@types/node": "^12.12.53",
"@types/request": "^2.48.5",
"jsonschema": "^1.2.6",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"robotjs": "^0.6.0",
"say": "^0.16.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7",
"typescript-json-schema": "^0.42.0"
},
"engines": {
"node": "^6.0.0"
},
"keywords": [
"Elite: Dangerous",
"elite",
"dangerous",
"typescript"
],
"os": [
"win32"
],
"scripts": {
"start": "ts-node client",
"build": "rimraf dist && tsc",
"lint": "tslint -p tsconfig.json -t verbose && tslint -p build/tsconfig.json -t verbose && tslint -p demo/tsconfig.json -t verbose && tslint -p client/tsconfig.json -t verbose",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonSchick/EliteDangerousUtils"
},
"license": "MIT",
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2
}
}