-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.12 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
{
"name": "@node-steam/data",
"version": "1.2.0",
"description": "Module with basic enums and data to make life easier while using Steam / Valve API's",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/node-steam/data",
"bugs": "https://github.com/node-steam/data/issues",
"repository": {
"url": "https://github.com/node-steam/data.git",
"type": "git"
},
"author": "N|Steam",
"keywords": [
"es6",
"es7",
"steam-api",
"steam",
"typescript"
],
"files": [
"lib/*.js",
"lib/**/*.js",
"lib/*.d.ts",
"lib/**/*.d.ts",
"example/*.js"
],
"contributors": [
{
"name": "Silas Rech",
"email": "[email protected]",
"url": "https://lenovouser.me"
}
],
"runkitExampleFilename": "example/runkit.js",
"engines": {
"node": ">=8.0.0"
},
"license": "MIT",
"scripts": {
"compile": "tsc -p .",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"docs": "typedoc src/index.ts",
"prepublish": "yarn lint && yarn docs"
},
"devDependencies": {
"@types/node": "^15",
"typescript": "^4"
}
}