-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "bot",
"version": "1.0.0",
"description": "Facebook Messenger bot for querying the upcoming open events and recently updated repositories",
"main": "index.js",
"private": true,
"dependencies": {
"body-parser": "^1.15.2",
"config": "^1.24.0",
"express": "^4.14.0",
"got": "^6.6.3",
"moment": "^2.16.0",
"nedb": "^1.8.0",
"nlp_compromise": "^6.5.3",
"ranka": "^0.1.5",
"request": "^2.78.0"
},
"author": "KahWee Teng <[email protected]>",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"standard": "^10.0.0-beta.0"
},
"scripts": {
"lint": "standard test/**/*.js src/**/*.js",
"test": "mocha --recursive",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report html",
"coverage-ci": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webuildsg/bot.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/webuildsg/bot/issues"
},
"homepage": "https://github.com/webuildsg/bot#readme",
"standard": {
"globals": [
"describe",
"it"
]
}
}