-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 2.01 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
{
"name": "osm-request",
"description": "Request the OSM API from Javascript, with promises :)",
"version": "2.0.0",
"homepage": "https://github.com/osmlab/osm-request/",
"repository": "https://github.com/osmlab/osm-request/",
"bugs": "https://github.com/osmlab/osm-request/issues",
"author": "OpenStreetMap developers",
"license": "MIT",
"keywords": [
"osm",
"openstreetmap",
"request",
"api"
],
"main": "dist/OsmRequest.js",
"files": [
"dist"
],
"moduleRoots": [
"node_modules",
"src"
],
"scripts": {
"watch": "cross-env NODE_PATH=src webpack -w --progress",
"build": "cross-env NODE_ENV=production NODE_PATH=src webpack --progress",
"precommit": "lint-staged",
"test": "cross-env NODE_PATH=src jest",
"test-watch": "npm test -- --coverage --watch",
"test-ci": "npm test -- --ci --coverage",
"test-prettier": "prettier --config .prettierrc --list-different \"src/**/*.{js,json}\"",
"lint": "eslint \"src/**/*.{js,json}\"",
"doc": "npm run doc:lint && documentation build ./src/* -f md > API.md",
"doc:lint": "documentation lint ./src/*",
"preversion": "npm run test-ci && npm run build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babel-jest": "29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"documentation": "^14.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-json": "^4.0.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"cross-fetch": "^4.0.0",
"osm-auth": "^2.5.0",
"xml2js": "^0.6.2",
"xmlserializer": "^0.6.1"
}
}