-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·33 lines (33 loc) · 922 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
{
"name": "tryhaskell-bot",
"private": true,
"version": "1.0.0",
"description": "Try Haskell in Telegram via tryhaskell.org",
"main": "index.js",
"scripts": {
"build": "babel -d dist/ src/",
"build:watch": "babel -d dist/ src/ --watch",
"eslint": "eslint src/",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "goodmind <andwebar@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^2.11.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.1",
"eslint-plugin-standard": "^1.3.2"
},
"dependencies": {
"@cycle/core": "^6.0.3",
"@cycle/http": "^8.2.2",
"common-tags": "^1.2.0",
"cycle-telegram": "^2.1.0",
"ramda": "^0.21.0",
"rx": "^4.1.0"
}
}