forked from smontanari/code-forensics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "code-forensics",
"version": "0.15.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": ">=0.10.0",
"npm": ">=3.0.0"
},
"dependencies": {
"JSONStream": "^1.3.1",
"bluebird": "^3.4.7",
"byline": "^5.0.0",
"chalk": "^1.1.3",
"csv-string": "^2.3.2",
"d3": "^4.10.0",
"d3-cloud": "^1.2.4",
"d3-tip": "^0.7.1",
"del": "^2.2.2",
"duplexer2": "^0.1.4",
"ecstatic": "^2.2.1",
"fancy-log": "^1.3.0",
"fast-csv": "^2.4.0",
"findup-sync": "^2.0.0",
"glob": "^7.1.2",
"gulp": "^3.9.1",
"http-server": "^0.10.0",
"is-stream": "^1.1.0",
"knockout": "^3.4.2",
"less": "^2.7.2",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"multipipe": "^1.0.2",
"multistream": "^2.1.0",
"mustache": "^2.3.0",
"router": "^1.3.1",
"sha1": "^1.1.1",
"shelljs": "^0.7.8",
"sloc": "^0.2.0",
"string_decoder": "^1.0.3",
"systemjs": "^0.20.18",
"through2": "^2.0.3",
"through2-filter": "^2.0.0",
"through2-map": "^3.0.0",
"through2-reduce": "^1.1.1",
"typhonjs-escomplex": "^0.0.12",
"xml": "^1.0.1",
"xml-reader": "^2.4.3"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-plugin-jasmine": "^2.8.4",
"jasmine": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1"
},
"scripts": {
"test": "./scripts/jasmine-runner.js",
"lint": "./node_modules/.bin/eslint lib spec scripts --quiet",
"preversion": "npm run test && npm run lint",
"postversion": "git push && git push --tags"
}
}