-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 888 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
{
"name": "reasonbot",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "jest --notify --watch"
},
"keywords": [
"BuckleScript"
],
"author": "mkhoeini",
"license": "MIT",
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^2.2.0"
},
"description": "A simple telegram bot in ReasonML.",
"dependencies": {
"node-telegram-bot-api": "^0.30.0",
"pouchdb-adapter-memory": "^6.4.3",
"rxdb": "^7.4.1",
"rxjs": "^5.5.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkhoeini/wiki3dabot.git"
},
"bugs": {
"url": "https://github.com/mkhoeini/wiki3dabot/issues"
},
"homepage": "https://github.com/mkhoeini/wiki3dabot#readme",
"jest": {
"testMatch": [
"**/*_test.bs.js"
]
}
}