forked from macbre/nodemw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1006 Bytes
/
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
{
"name": "nodemw",
"version": "0.10.1",
"author": "macbre <maciej.brencz@gmail.com> (http://macbre.net)",
"description": "MediaWiki API client written in node.js",
"main": "./lib/bot",
"repository": {
"type": "git",
"url": "git://github.com/macbre/nodemw.git"
},
"keywords": [
"mediawiki",
"wiki",
"api",
"nodejs",
"wikia"
],
"license": "BSD",
"engines": {
"node": ">=0.6"
},
"dependencies": {
"ansicolors": "0.3.x",
"async": "^2.0.0-rc.5",
"diff": "^2.2.3",
"jshint": "^2.9.1",
"node-version-compare": "^1.0.1",
"request": "^2.72.0",
"underscore": "1.8.x",
"winston": "^2.2.0"
},
"devDependencies": {
"csv-string": "2.3.x",
"esnext": "^2.0.0",
"jshint": "^2.9.2",
"vows": "0.8.x"
},
"scripts": {
"test": "vows --spec",
"lint": "jshint lib/api.js lib/bot.js examples/ test/"
},
"jshintConfig": {
"node": true,
"esversion": 6,
"-W030": false,
"-W084": false
}
}