-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.51 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
{
"name": "@coex/geosearch",
"version": "1.1.1",
"description": "Nodejs library for finding places using Mapy.cz Suggest API",
"scripts": {
"start": "tsc -w",
"prebuild": "rimraf dist",
"barrels": "barrelsby --delete -c barrels.json",
"build": "tsc && tsc -p tsconfig-cjs.json && yarn barrels",
"postbuild": "npm-prepare-dist -s postinstall -s prepare && yarn fix-paths && yarn compat",
"fix-paths": "yarn json -I -f ./dist/package.json -e \"this.module='./esm/index.js';this.main='./cjs/index.js';this.types='./types/index.ts'\"",
"compat": "mkdir ./dist/interface/ && cp ./compat/index.ts ./dist/interface/index.ts",
"demo": "ts-node demo",
"gpr:setup": "node --experimental-json-modules ./scripts/gpr-setup.mjs",
"test": "jest --config jestconfig.json",
"lint": "eslint ./src/**/**/* --fix",
"postversion": "git push && git push --follow-tags",
"publish:next": "yarn && yarn build && yarn test --coverage true && npm publish --folder dist --tag beta",
"release:beta": "npm version prerelease -m \"chore(update): prelease %s β\"",
"release:patch": "git checkout master && npm version patch -m \"chore(update): patch release %s 🐛 \"",
"release:minor": "git checkout master && npm version minor -m \"chore(update): release %s 🚀\"",
"release:major": "git checkout master && npm version major -m \"chore(update): major release %s 💥 \""
},
"dependencies": {
"axios": "^0.27.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/COEXCZ/geosearch.git"
},
"keywords": [
"mapycz",
"maps",
"mapy",
"geocoding"
],
"author": "COEX (https://github.com/COEXCZ)",
"license": "MIT",
"bugs": {
"url": "https://github.com/COEXCZ/geosearch/issues"
},
"homepage": "https://github.com/COEXCZ/geosearch#readme",
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^16.11.33",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"barrelsby": "^2.3.4",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"json": "^11.0.0",
"npm-prepare-dist": "^0.4.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn run lint"
}
}
}