-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1000 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1000 Bytes
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
{
"name": "devanoobot",
"version": "0.1.0",
"description": "",
"author": "agarzola <alfonsog@devanooga.com>",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --fix",
"start": "node index.js",
"test": "mocha $(find . -name \"*.test.js\" -not -path \"./node_modules/*\")",
"migrations": "knex migrate:latest",
"migrations:prod": "knex migrate:latest --env production"
},
"dependencies": {
"body-parser": "^1.18.0",
"cron": "^1.3.0",
"dotenv": "^4.0.0",
"express": "^4.15.4",
"got": "^7.1.0",
"knex": "^0.14.2",
"lodash": "^4.17.4",
"shelljs": "^0.7.8",
"slack": "^9.0.9",
"slack-winston": "0.0.9",
"sqlite3": "^3.1.13",
"winston": "^2.3.1"
},
"private": true,
"devDependencies": {
"eslint": "^4.6.1",
"mocha": "^3.4.2",
"pre-push": "^0.1.1",
"proxyquire": "^1.8.0",
"should": "^11.2.1",
"should-sinon": "0.0.5",
"sinon": "^2.3.4"
},
"pre-push": [
"test",
"lint"
]
}