-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "pushover-js",
"description": "Library to send notifications with Pushover",
"version": "1.3.2",
"private": false,
"author": {
"name": "Daniel Cañada García",
"email": "[email protected]",
"url": "https://www.github.com/danitetus"
},
"keywords": [
"pushover",
"notifications",
"mobile",
"push",
"notification"
],
"homepage": "https://github.com/danitetus/pushover-js",
"repository": {
"type": "git",
"url": "git://github.com/danitetus/pushover-js"
},
"scripts": {
"prebuild": "rm -Rf ./lib && rm -Rf ./docs",
"build": "tsc",
"postbuild": "npm run generate-doc",
"generate-doc": "typedoc ./docs ./src --plugin typedoc-plugin-markdown",
"test": "ts-node test.ts"
},
"dependencies": {},
"engines": {
"node": ">= 0.6.0"
},
"main": "./lib/pushover.js",
"gypfile": false,
"readmeFilename": "README.md",
"bugs": "https://github.com/danitetus/pushover-js/issues",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/node": "^14.11.5",
"dotenv": "^8.2.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.0.3"
}
}