-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "osm-extractor",
"description": "Extracts data from OpenStreetMap",
"version": "1.0.0",
"main": "index.js",
"keywords": [
"osm",
"openstreetmap",
"extracts",
"nominatim"
],
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"homepage": "https://github.com/stepankuzmin/osm-extractor",
"repository": {
"type": "git",
"url": "git+https://github.com/stepankuzmin/osm-extractor.git"
},
"bugs": {
"url": "https://github.com/stepankuzmin/osm-extractor/issues"
},
"license": "MIT",
"scripts": {
"cz": "git-cz",
"lint": "eslint .",
"test": "node index.test.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"yarn lint",
"git add"
]
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"moxios": "^0.4.0",
"prettier": "^1.15.2",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"tape": "^4.9.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}