forked from spencermountain/wtf_wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 965 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
{
"name": "wtf_wikipedia",
"description": "parse wikiscript into json",
"version": "0.3.2",
"author": "Spencer Kelly <spencermountain@gmail.com> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/wtf_wikipedia.git"
},
"main": "src/index.js",
"engines": [
"node >= 0.4.1"
],
"keywords": [
"wikipedia",
"wikimedia",
"wikipedia markup",
"wikiscript"
],
"dependencies": {
"request": "2.*.*"
},
"devDependencies": {
"grunt-contrib-uglify": "*",
"grunt-browserify": "~3.8.*",
"mocha": "2.2.x",
"istanbul": "^0.4.1",
"should": "7.0.x",
"grunt-mocha-test": "0.12.x",
"grunt-mocha-test":"0.*.*",
"grunt-mocha-istanbul": "3.*.*"
},
"scripts": {
"test": "grunt test",
"start":"node ./src/index.js"
},
"bin": {
"wikipedia": "./bin/parse.js",
"wikipedia_plaintext": "./bin/plaintext.js"
},
"license": "MIT"
}