-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 985 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
{
"name": "nocchi",
"version": "1.0.0",
"description": "Setup: `cp config.example.js config.js` and set up discord token.",
"main": "nocchi.js",
"scripts": {
"dev": "babel-node src/index.js",
"build": "babel src --out-dir bin",
"start": "node bin/index.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arya-s/nocchi.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/arya-s/nocchi/issues"
},
"homepage": "https://github.com/arya-s/nocchi#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.7.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1"
},
"dependencies": {
"discord.js": "^8.1.0",
"jsonfile": "^2.3.1",
"twit": "^2.2.4",
"wolfram-alpha": "^0.5.0"
}
}