forked from groupme/bot-tutorial-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
48
49
50
51
52
53
{
"name": "groupmeme-bot",
"version": "0.1.0",
"description": "The GroupMe bot with the dankest memes",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "standard --verbose | snazzy",
"test": "npm run lint && mocha",
"cover": "istanbul cover _mocha",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"dependencies": {
"body-parser": "^1.16.0",
"express": "^4.14.1",
"groupme": "^0.5.7",
"pg": "4.x",
"pug": "^2.0.0-beta10",
"request": "^2.79.0",
"snoowrap": "^1.12.0",
"syllable": "^2.2.0"
},
"engines": {
"node": "6.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/simonbilskyrollins/groupmeme-bot"
},
"keywords": [
"node",
"heroku",
"groupme"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^8.6.0"
},
"standard": {
"ignore": [
"test.js"
]
},
"pre-commit": "lint"
}