-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
152 lines (152 loc) · 5.98 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "iD",
"version": "2.12.1",
"description": "A friendly editor for OpenStreetMap",
"main": "iD.js",
"repository": "openstreetmap/iD",
"keywords": [
"editor",
"openstreetmap"
],
"license": "ISC",
"scripts": {
"all": "npm-run-all -s clean build dist",
"build": "webpack --env NODE_ENV=production",
"build:analyze": "webpack --env NODE_ENV=analyze",
"build:development": "webpack --env NODE_ENV=development",
"clean": "shx rm -rf dist/*.min.js dist/*.map dist/*.css dist/img dist/mapillary-js dist/pannellum-streetside dist/*.LICENSE.txt",
"dist": "npm-run-all -p dist:**",
"dist:mapillary": "shx mkdir -p dist/mapillary-js && shx cp -R node_modules/mapillary-js/dist/* dist/mapillary-js/",
"dist:pannellum": "shx mkdir -p dist/pannellum-streetside && shx cp -R node_modules/pannellum/build/* dist/pannellum-streetside/",
"dist:svg:id": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"iD-%s\" --symbol-sprite img/iD-sprite.svg 'svg/iD-sprite/**/*.svg'",
"dist:svg:community": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"community-%s\" --symbol-sprite img/community-sprite.svg node_modules/osm-community-index/dist/img/*.svg",
"dist:svg:fa": "svg-sprite --symbol --symbol-dest . --symbol-sprite img/fa-sprite.svg svg/fontawesome/*.svg",
"dist:svg:maki": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"maki-%s\" --symbol-sprite img/maki-sprite.svg node_modules/@mapbox/maki/icons/*.svg",
"dist:svg:mapillary": "svg-sprite --symbol --symbol-dest . --symbol-sprite img/mapillary-sprite.svg node_modules/mapillary_sprite_source/package_signs/*.svg",
"dist:svg:temaki": "svg-sprite --symbol --symbol-dest . --shape-id-generator \"temaki-%s\" --symbol-sprite img/temaki-sprite.svg node_modules/temaki/icons/*.svg",
"imagery": "node data/update_imagery",
"lint": "eslint *.js test/spec modules",
"lintfix": "eslint --fix *.js test/spec modules",
"production": "npm-run-all -p dist:** && webpack --env NODE_ENV=production",
"start": "npx webpack server --env NODE_ENV=development",
"test": "npm-run-all -s lint build test:**",
"test:hoot": "karma start karma.conf.js",
"testgui:hoot": "karma start karma.conf.js --single-run --browsers Chrome",
"test:spec": "karma start karma.id.conf.js",
"translations": "node data/update_locales",
"buildinfo": "UI_VERSION=`git describe --tags` && UI_VERSION_DATE=`git show -s --format=%cs` && echo '{\"name\": \"UI\", \"version\": \"'$UI_VERSION'\", \"date\": \"'$UI_VERSION_DATE'\", \"user\": \"webpack\"}' > modules/Hoot/config/buildInfo.json"
},
"dependencies": {
"@mapbox/sexagesimal": "1.2.0",
"@tmcw/togeojson": "^4.5.0",
"@mapbox/vector-tile": "^1.3.1",
"@turf/bbox-clip": "^6.0.0",
"@turf/nearest-point-on-line": "6.5.0",
"axios": "^0.24.0",
"diacritics": "1.3.0",
"fast-json-stable-stringify": "2.1.0",
"file-saver": "^2.0.5",
"lodash": "^4.17.21",
"lodash-es": "4.17.21",
"marked": "4.0.10",
"martinez-polygon-clipping": "0.7.1",
"material-icons": "^1.10.4",
"node-diff3": "3.1.0",
"osm-auth": "1.1.1",
"pannellum": "2.5.6",
"progressbar.js": "^1.1.0",
"q": "1.5.1",
"rbush": "3.0.1",
"which-polygon": "2.2.0",
"wmf-sitematrix": "0.1.5"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@fortawesome/fontawesome-svg-core": "~1.2.36",
"@fortawesome/free-brands-svg-icons": "~5.15.4",
"@fortawesome/free-regular-svg-icons": "~5.15.4",
"@fortawesome/free-solid-svg-icons": "~5.15.4",
"@mapbox/maki": "^6.2.0",
"babel-loader": "^8.3.0",
"chai": "^4.3.4",
"colors": "^1.4.0",
"concat-files": "^0.1.1",
"copy-webpack-plugin": "^10.0.0",
"coverage-istanbul-loader": "^3.0.5",
"cpx": "^1.5.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.1.4",
"d3": "4.13.0",
"ecstatic": "^4.1.4",
"editor-layer-index": "git+https://git@github.com/osmlab/editor-layer-index.git#gh-pages",
"eslint": "^8.3.0",
"esm": "~3.2.25",
"express": "^4.17.3",
"express-http-proxy": "^1.6.3",
"file-loader": "^6.2.0",
"gaze": "^1.1.3",
"glob": "^7.2.0",
"happen": "^0.3.2",
"html-webpack-plugin": "^5.5.0",
"js-yaml": "^4.1.0",
"json-stringify-pretty-compact": "^3.0.0",
"jsonschema": "^1.4.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-express-http-server": "0.0.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-remap-istanbul": "^0.6.0",
"karma-scss-preprocessor": "^4.0.0",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0",
"mapillary-js": "4.0.0",
"mapillary_sprite_source": "^1.8.0",
"mini-css-extract-plugin": "^2.4.5",
"minimist": "^1.2.6",
"mocha": "^9.2.0",
"name-suggestion-index": "6.0.20211117",
"node-sass": "^6.0.1",
"npm-run-all": "^4.1.5",
"osm-community-index": "0.5.0",
"request": "^2.88.2",
"sass-loader": "^12.3.0",
"shelljs": "^0.8.5",
"shx": "^0.3.3",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"smash": "0.0.15",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.1",
"svg-sprite": "2.0.2",
"temaki": "2.3.0",
"terser": "^5.14.2",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"webpack-merge": "^5.8.0",
"xml2js": "^0.5.0",
"xmlbuilder": "^15.1.1"
},
"greenkeeper": {
"label": "chore-greenkeeper",
"ignore": [
"d3"
]
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
}
}