-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"type": "module",
"version": "0.3.2",
"name": "pushnotice",
"description": "Application Notifications sent to Telegram. Linking pushnotice.chat into your project.",
"keywords": [
"telegram",
"notifications",
"util",
"debug",
"logging"
],
"license": "ISC",
"main": "index.js",
"scripts": {
"cu": "ncu",
"cu:fix": "ncu -u",
"f:fix": "run-s format:fix",
"format": "xo",
"format:fix": "xo --fix",
"test": "xo && ava -v",
"ava": "ava -v --watch"
},
"files": [
"index.js"
],
"author": {
"name": "Chris Spiegl",
"email": "[email protected]",
"url": "https://ChrisSpiegl.com"
},
"repository": {
"type": "git",
"url": "https://github.com/spieglio/pushnotice-node-api-client.git"
},
"bugs": {
"url": "https://github.com/spieglio/pushnotice-node-api-client/issues"
},
"homepage": "https://pushnotice.chat",
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"ava": "^4.1.0",
"dotenv": "^16.0.0",
"npm-check-updates": "^12.5.4",
"xo": "^0.48.0"
}
}