forked from smontanari/code-forensics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.17 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
77
78
79
80
81
82
83
84
85
86
{
"name": "code-forensics",
"version": "3.1.0",
"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"
],
"engines": {
"node": ">=13.0",
"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": {
"ansi-colors": "^4.1.1",
"bluebird": "^3.7.2",
"byline": "^5.0.0",
"csv-string": "^4.0.1",
"d3": "^6.3.1",
"d3-cloud": "^1.2.5",
"d3-selection": "^2.0.0",
"d3-v6-tip": "^1.0.8",
"del": "^6.0.0",
"dotenv": "^16.4.5",
"duplexer2": "^0.1.4",
"fast-csv": "^4.3.6",
"findup-sync": "^4.0.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"is-stream": "^2.0.0",
"JSONStream": "^1.3.5",
"knockout": "^3.5.1",
"koa": "^2.13.1",
"koa-mount": "^4.0.0",
"koa-route": "^3.2.0",
"koa-static": "^5.0.0",
"less": "^4.0.0",
"local-web-server": "^4.2.1",
"lodash": "^4.17.20",
"merge2": "^1.4.1",
"minimatch": "^3.0.4",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"multipipe": "^4.0.0",
"multistream": "^4.0.1",
"mustache": "^4.1.0",
"router": "^1.3.5",
"sha1": "^1.1.1",
"shelljs": "^0.8.4",
"sloc": "^0.2.1",
"sort-stream2": "^1.0.0",
"string_decoder": "^1.3.0",
"systemjs": "^0.21.6",
"through2": "^4.0.2",
"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": {
"@sinonjs/fake-timers": "^6.0.1",
"eslint": "^7.17.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"moment-timezone": "^0.5.32",
"semver": "^7.3.4"
}
}