forked from osmlab/name-suggestion-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.33 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
84
85
86
87
{
"name": "name-suggestion-index",
"version": "3.4.0",
"license": "BSD-3-Clause",
"repository": "osmlab/name-suggestion-index",
"author": "Bryan Housel <[email protected]>",
"description": "Canonical common brand names for OpenStreetMap",
"homepage": "http://osmlab.github.io/name-suggestion-index",
"keywords": [
"OpenStreetMap",
"OSM",
"names",
"brands",
"franchises",
"javascript",
"canonicalization"
],
"main": "dist/index.js",
"module": "index.mjs",
"scripts": {
"dist": "node build_dist.js && rollup -c",
"docbuild": "parcel build ./app/index.html --no-source-maps --no-content-hash --no-minify --public-url ./ --out-dir docs",
"build": "node build_brands",
"lint": "eslint *.js lib/*.js",
"logos": "node build_wikidata",
"test": "npm-run-all -s validate lint build",
"validate": "node validate",
"wikicheck": "node check_wikiTags",
"wikidata": "node build_wikidata",
"wikimatch": "node match_wikiTags"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"babel-preset-nano-react-app": "^0.1.0",
"clear": "^0.1.0",
"colors": "^1.1.2",
"diacritics": "^1.3.0",
"eslint": "^5.16.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.4",
"json-stringify-pretty-compact": "^1.1.0",
"jsonschema": "^1.2.4",
"node-fetch": "^2.2.0",
"npm-run-all": "^4.0.0",
"parcel-bundler": "^1.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"rollup": "^1.16.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.4",
"shelljs": "^0.8.0",
"whatwg-fetch": "^3.0.0",
"xmlbuilder": "^10.0.0"
},
"optionalDependencies": {
"twitter": "^1.7.1",
"wikidata-sdk": "^6.2.0"
},
"engines": {
"node": ">=8.10.0"
},
"babel": {
"presets": [
"nano-react-app"
],
"plugins": [
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-react-jsx",
{
"pragmaFrag": "React.Fragment"
}
]
]
}
}