forked from spencermountain/wtf_wikipedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "wtf_wikipedia",
"description": "parse wikiscript into json",
"version": "5.2.0",
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/wtf_wikipedia.git"
},
"main": "./src/index.js",
"browser": "./builds/wtf_wikipedia.min.js",
"unpkg": "./builds/wtf_wikipedia.min.js",
"scripts": {
"start": "node ./scripts/demo.js",
"test": "node ./scripts/test.js",
"postpublish": "node ./scripts/coverage.js",
"coverage": "node ./scripts/coverage.js",
"testb": "TESTENV=prod node ./scripts/test.js",
"watch": "amble ./scratch.js",
"build": "node ./scripts/build.js"
},
"bin": {
"wtf_wikipedia": "./bin/wtf.js"
},
"engines": {
"node": ">=6.0.0"
},
"files": [
"builds",
"api",
"src",
"bin"
],
"keywords": [
"wikipedia",
"wikimedia",
"wikipedia markup",
"wikiscript"
],
"dependencies": {
"cross-fetch": "2.2.2",
"jshashes": "1.0.7"
},
"devDependencies": {
"amble": "0.0.6",
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"babelify": "8.0.0",
"browserify": "16.2.2",
"codacy-coverage": "3.0.0",
"derequire": "2.0.6",
"nyc": "12.0.2",
"shelljs": "0.8.2",
"tap-dancer": "0.0.3",
"tape": "4.9.1",
"uglify-js": "3.4.6"
},
"license": "MIT"
}