-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "wiki-evolution",
"version": "1.0.0",
"description": "Visualize evolution of your MediaWiki based site",
"main": "index.js",
"engines": {
"node": ">=12.0"
},
"bin": {
"wiki-evolution": "bin/wiki-evolution.sh",
"wiki2gource": "bin/wiki2gource.js"
},
"scripts": {
"test": "mocha -R spec",
"lint": "jshint *.js bin/*.js test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/macbre/wiki-evolution.git"
},
"keywords": [
"wiki",
"evolution",
"visualize",
"gource",
"mediawiki"
],
"author": "macbre <maciej.brencz@gmail.com> (http://macbre.net)",
"license": "ISC",
"bugs": {
"url": "https://github.com/macbre/wiki-evolution/issues"
},
"homepage": "https://github.com/macbre/wiki-evolution",
"dependencies": {
"async": "^3.2.1",
"color": "^4.0.1",
"nodemw": "^0.20.0"
},
"devDependencies": {
"jshint": "^2.6.3",
"mocha": "^10.0.0"
},
"jshintConfig": {
"node": true,
"esversion": 6,
"-W030": false,
"-W084": false,
"strict": true
}
}