This repository was archived by the owner on Feb 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "messenger-dictionary",
"version": "1.3.0",
"description": "Webhook server for Messenger Dictionary",
"keywords": [
"node",
"express",
"webhook",
"messenger",
"bot",
"app",
"dictionary"
],
"homepage": "https://dictionary.eidoriantan.me",
"bugs": "https://github.com/eidoriantan/messenger-dictionary/issues",
"license": "GPL-3.0-only",
"author": {
"name": "Adriane Justine Tan",
"email": "admin@eidoriantan.me",
"url": "https://eidoriantan.me"
},
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/eidoriantan"
},
"main": "server.js",
"directories": {},
"repository": {
"type": "git",
"url": "git+https://github.com/eidoriantan/messenger-dictionary.git"
},
"scripts": {
"start": "node server.js",
"lint": "eslint -c .eslintrc.json . --ext .js,.mjs",
"commitlint": "git log -1 --format=%B | commitlint",
"test": "npm run lint && mocha"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"serve-index": "^1.9.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^8.1.0",
"should": "^13.2.3",
"standard": "^14.3.4",
"supertest": "^4.0.2"
},
"private": true
}