-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "anvireco",
"version": "0.0.1",
"description": "A tool for analysing Github code reviews.",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --compilers ts:ts-node/register test/**/*.test.ts",
"start": "node release/index.js",
"postinstall": "gulp compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo.git"
},
"keywords": [
"code",
"review",
"nodejs",
"typescript",
"github",
"pull",
"requests",
"data",
"analysis"
],
"author": "Mario Juez",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo/issues"
},
"homepage": "https://github.com/mjuez/TFM2016_Analisis-Visual-Revisiones-Codigo#readme",
"dependencies": {
"@octokit/rest": "^15.2.5",
"@types/bluebird": "3.5.3",
"@types/body-parser": "1.16.3",
"@types/express": "4.0.35",
"@types/mathjs": "0.0.34",
"@types/mocha": "2.2.40",
"@types/mongoose": "5.0.7",
"@types/node": "7.0.12",
"@types/twix": "0.6.32",
"bluebird": "3.5.0",
"body-parser": "1.17.1",
"cheerio": "0.22.0",
"express": "4.15.2",
"gulp": "3.9.1",
"gulp-sourcemaps": "2.6.0",
"gulp-typescript": "3.1.6",
"json2csv": "3.7.3",
"mathjs": "3.17.0",
"moment": "2.19.3",
"mongoose": "5.0.11",
"request": "2.81.0",
"request-promise": "4.2.1",
"ts-node": "3.0.2",
"tslint": "5.0.0",
"twix": "1.1.5",
"typescript": "2.2.2"
},
"devDependencies": {
"@types/chai": "3.4.35",
"@types/chai-as-promised": "0.0.30",
"@types/chai-http": "0.0.30",
"@types/sinon": "2.1.3",
"@types/sinon-mongoose": "1.3.3",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-http": "3.0.0",
"gulp-typedoc": "2.0.2",
"mocha": "3.2.0",
"sinon": "2.1.0",
"sinon-mongoose": "2.0.2",
"typedoc": "0.5.10"
}
}