-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 817 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
{
"name": "small_stonks",
"version": "1.0.0",
"description": "A very small stocks application for the macOS menu bar",
"main": "main.js",
"scripts": {
"start": "yarn run tsc && electron dist/main.js",
"test": "yarn ts-mocha tests/*.ts",
"lint": "eslint src --ext .ts"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"stocks"
],
"author": "Bob Long",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"electron": "^8.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"stocks.js": "^0.0.17",
"ts-mocha": "^7.0.0",
"typescript": "^3.8.3"
}
}