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
|
{
"name": "lgtm",
"version": "1.0.0",
"description": "looks good to me",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start": "node index",
"setup_database": "node scripts/setup_database",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbdr/lgtm.git"
},
"author": "Ruben Beltran del Rio <ruben@unlimited.pizza>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rbdr/lgtm/issues"
},
"homepage": "https://github.com/rbdr/lgtm#readme",
"dependencies": {
"dotenv": "^2.0.0",
"getenv": "^0.7.0",
"koa": "^1.2.4",
"koa-static": "^2.0.0",
"mysql2": "^1.1.2",
"nunjucks": "^3.0.0"
},
"devDependencies": {
"eslint-config-hapi": "^10.0.0",
"eslint-plugin-hapi": "^4.0.0"
}
}
|