forked from nichtich/wikidata-taxonomy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.02 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
79
80
81
82
83
{
"name": "wikidata-taxonomy",
"version": "0.6.7",
"description": "command line tool to extract taxonomies from Wikidata",
"author": "Jakob Voß",
"license": "MIT",
"main": "index.js",
"browser": "index.js",
"bin": {
"wdtaxonomy": "./wdtaxonomy.js",
"wdmappings": "./wdmappings.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nichtich/wikidata-taxonomy.git"
},
"scripts": {
"lint": "npx standard *.js lib/*.js",
"fix": "npx standard --fix *.js lib/*.js",
"build": "npx browserify . -s wdt --no-bundle-external -o dist/wikidata-taxonomy.js",
"minify": "npx uglifyjs dist/wikidata-taxonomy.js -c -m --source-map --output dist/wikidata-taxonomy.min.js.map -o dist/wikidata-taxonomy.min.js",
"dist": "npm run build && npm run minify",
"test": "npx mocha --reporter spec --no-colors"
},
"bugs": {
"url": "https://github.com/nichtich/wikidata-taxonomy/issues"
},
"keywords": [
"wikidata",
"taxonomy",
"classification",
"hierarchy",
"cli"
],
"homepage": "https://github.com/nichtich/wikidata-taxonomy#readme",
"dependencies": {
"beacon-links": "^0.2.2",
"chalk": "^1.1.3",
"commander": "^2.10.0",
"request": "^2.3.4",
"request-promise-native": "^1.0.0",
"wikidata-sdk": "^3.2.4"
},
"engines": {
"node": ">= 4.0.0"
},
"browserify": {
"transform": [
[
"browserify-shim"
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"browserify-shim": {
"wikidata-sdk": "global:wdk",
"request-promise-native": "global:requestPromise"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.14",
"chai": "^3.5.0",
"mocha": "^3.0.0",
"npx": "^9.7.1",
"standard": "^10.0",
"uglify-es": "^3.3.7"
},
"conf.py": {
"project": "wdtaxonomy",
"latex_elements": {
"papersize": "a4paper"
}
}
}