-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1010 Bytes
/
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
{
"name": "aurora",
"version": "0.0.1",
"description": "Bot for getting Aurora Borealis predictions.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./src/app.js",
"lint": "eslint ./src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teodorpatras/AuroraBot.git"
},
"author": "Teodor Patras",
"license": "ISC",
"bugs": {
"url": "https://github.com/teodorpatras/AuroraBot/issues"
},
"homepage": "https://github.com/teodorpatras/AuroraBot#readme",
"dependencies": {
"cron": "1.1.1",
"express": "4.14.0",
"mongoose": "4.6.6",
"node-telegram-bot-api": "0.24.0",
"request": "2.78.0"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.7.1",
"mocha": "3.1.2"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": [
"error",
"never"
]
}
}
}