-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
42 lines (42 loc) · 996 Bytes
/
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
{
"name": "steamid",
"version": "2.1.0",
"description": "Exposes a SteamID object class for easy SteamID management",
"keywords": [
"steam",
"steamid",
"steam account"
],
"homepage": "https://github.com/DoctorMcKay/node-steamid",
"bugs": {
"url": "https://github.com/DoctorMcKay/node-steamid/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DoctorMcKay/node-steamid.git"
},
"engines": {
"node": ">=12.0.0"
},
"main": "dist/index.js",
"files": [
"/dist",
"/src"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"build": "node scripts/delete-dist.js && tsc --outDir dist",
"test": "node test/test.js",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@types/node": "12.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"eslint": "^7.31.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}