-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
58
59
60
61
62
63
64
65
66
67
{
"name": "nightscout-discord-rich-presence",
"version": "2.1.1",
"description": "Allows nightscout to display your blood sugar on discord.",
"main": "build/index.js",
"bin": "build/index.js",
"repository": "[email protected]:legoandmars/nightscout-discord-rich-presence.git",
"author": "legoandmars/Bobbie",
"contributors": [
"Jack Baron <[email protected]> (https://www.jackbaron.com)"
],
"license": "MIT",
"private": true,
"scripts": {
"test": "yarn run check && yarn run lint",
"check": "yarn run build --noEmit",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prebuild": "rimraf build",
"build": "tsc",
"watch": "tsc --watch",
"prepackage": "rimraf dist",
"package": "pkg . --out-path dist",
"pkg": "yarn run build && yarn run package"
},
"engines": {
"node": ">=10.0.0"
},
"pkg": {
"assets": [
"package.json",
"build/**/*.map"
],
"out-path": "dist",
"targets": [
"node12-windows",
"node12-linux",
"node12-macos"
]
},
"devDependencies": {
"@types/discord-rpc": "^3.0.1",
"@types/is-url": "^1.2.28",
"@types/node": "^12.7.8",
"@types/prompts": "^2.0.1",
"@types/yaml": "^1.0.2",
"pkg": "^4.4.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.6.3"
},
"dependencies": {
"axios": "0.21.1",
"discord-rpc": "^3.1.0",
"is-url": "^1.2.4",
"kind-of": "6.0.3",
"kleur": "^3.0.3",
"minimist": "1.2.3",
"node-fetch": "2.6.1",
"prompts": "^2.2.1",
"read-pkg-up": "^6.0.0",
"source-map-support": "^0.5.13",
"yaml": "^1.7.0"
}
}