-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 KB
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
{
"name": "electron-steam",
"version": "1.1.0",
"description": "Minimalist steam OpenAPI authentication for Electron.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "tsc-watch --onSuccess \\\"node ./lib/index.js\\",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"format": "npx prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"electron",
"steam",
"openid"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/electron": "^1.6.10",
"@types/jest": "^26.0.13",
"@types/node-fetch": "^2.5.7",
"@types/openid": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"electron": "^10.1.1",
"eslint": "^7.8.1",
"eslint-plugin-jest": "^24.0.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"spectron": "^11.1.0",
"ts-jest": "^26.3.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Sortiarius/electron-steam"
},
"dependencies": {
"node-fetch": "^2.6.1",
"openid": "^2.0.7"
},
"files": [
"lib/**/*"
]
}