forked from smontanari/code-forensics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2 KB
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
77
78
79
80
81
{
"name": "code-forensics",
"version": "2.3.1",
"homepage": "https://github.com/smontanari/code-forensics",
"bugs": "https://github.com/smontanari/code-forensics/issues",
"license": "GPL-3.0",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/smontanari/code-forensics.git"
},
"description": "A toolset for code analysis and report visualisation",
"author": "Silvio Montanari",
"files": [
"lib",
"public",
"scripts"
],
"bin": {},
"engines": {
"node": ">=4",
"npm": ">=3.0.0"
},
"scripts": {
"test": "jest",
"lint": "eslint lib/ spec/ scripts/",
"preversion": "npm run test && npm run lint",
"postversion": "git push && git push --tags"
},
"dependencies": {
"JSONStream": "^1.3.5",
"ansi-colors": "^3.2.4",
"bluebird": "^3.5.4",
"byline": "^5.0.0",
"csv-string": "^3.1.5",
"d3": "^5.9.2",
"d3-cloud": "^1.2.5",
"d3-tip": "^0.9.1",
"del": "^3.0.0",
"duplexer2": "^0.1.4",
"ecstatic": "^3.3.2",
"fast-csv": "^2.5.0",
"findup-sync": "^3.0.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"http-server": "^0.11.1",
"is-stream": "^1.1.0",
"knockout": "^3.5.0",
"less": "^3.9.0",
"lodash": "^4.17.11",
"merge2": "^1.2.3",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"multipipe": "^3.0.1",
"multistream": "^2.1.1",
"mustache": "^3.0.1",
"router": "^1.3.3",
"sha1": "^1.1.1",
"shelljs": "^0.8.3",
"sloc": "^0.2.1",
"sort-stream2": "^1.0.0",
"string_decoder": "^1.2.0",
"systemjs": "^0.21.6",
"through2": "^3.0.1",
"through2-filter": "^3.0.0",
"through2-map": "^3.0.0",
"through2-reduce": "^1.1.1",
"typhonjs-escomplex": "^0.1.0",
"xml": "^1.0.1",
"xml-reader": "^2.4.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-plugin-jest": "^22.6.4",
"jest": "^24.8.0",
"lolex": "^4.0.1",
"moment-timezone": "^0.5.25"
}
}