forked from es-analysis/plato
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 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
76
{
"name": "plato",
"description": "JavaScript source analysis and visualizer",
"version": "1.6.0",
"homepage": "https://github.com/es-analysis/plato",
"license": "MIT",
"author": {
"name": "Jarrod Overson",
"email": "jsoverson@gmail.com",
"url": "http://jarrodoverson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/es-analysis/plato.git"
},
"bugs": {
"url": "https://github.com/es-analysis/plato/issues"
},
"bin": "bin/plato",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/es-analysis/plato/blob/master/LICENSE-MIT"
}
],
"main": "lib/plato",
"engines": {
"node": ">= 4.4.5"
},
"scripts": {
"test": "grunt test",
"start": "http-server -c-1 -o /reports/ -p 8081",
"lint": "eslint -c .eslintrc src"
},
"devDependencies": {
"@types/node": "12.6.8",
"eslint": "6.1.0",
"grunt": "~1.0.4",
"grunt-contrib-jshint": "~2.1.0",
"grunt-contrib-nodeunit": "~2.0.0",
"grunt-contrib-uglify": "~4.0.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-eslint": "22.0.0",
"grunt-ts": "6.0.0-beta.22",
"http-server": "0.11.1",
"jshint": "2.10.2",
"load-grunt-tasks": "5.1.0",
"ts-node": "8.3.0",
"typescript": "3.5.3"
},
"keywords": [
"halstead",
"visualize",
"cyclomatic",
"complexity",
"report",
"analysis",
"analyze"
],
"dependencies": {
"bootstrap": "4.3.1",
"codemirror": "5.48.2",
"font-awesome": "4.7.0",
"fs-extra": "~8.1.0",
"glob": "~7.1.4",
"jquery": "3.4.1",
"lodash": "4.17.15",
"lodash.template": "4.5.0",
"morris.js": "0.5.0",
"popper.js": "1.15.0",
"posix-getopt": "~1.2.0",
"raphael": "2.2.8",
"typhonjs-escomplex": "0.1.0",
"winston": "3.2.1"
}
}