track/node_modules/pigeon-maps/package.json

104 lines
3.5 KiB
JSON

{
"name": "pigeon-maps",
"version": "0.21.6",
"description": "ReactJS maps without external dependencies",
"author": "Marius Andra",
"license": "MIT",
"types": "lib/index.d.ts",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mariusandra/pigeon-maps.git"
},
"bugs": {
"url": "https://github.com/mariusandra/pigeon-maps/issues"
},
"homepage": "https://github.com/mariusandra/pigeon-maps#readme",
"scripts": {
"start": "webpack-dev-server --history-api-fallback --hot --host 0.0.0.0 --port 4040",
"build": "rimraf lib && rollup -c && rimraf lib/demo && mv lib/src/* lib/ && rimraf lib/src",
"prepublishOnly": "yarn build",
"prepare": "npm run build",
"prettier": "prettier --write \"src/**/*.tsx\" \"demo/**/*.tsx\" ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"src",
"LICENSE.md",
"README.md",
"providers"
],
"dependencies": {},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-do-expressions": "^7.16.7",
"@babel/plugin-proposal-export-default-from": "^7.16.7",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-bind": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.16.7",
"@babel/plugin-proposal-json-strings": "^7.16.7",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/plugin-proposal-pipeline-operator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/react": "17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-babel-env-inline": "^0.0.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "4.0.1",
"file-loader": "^6.0.0",
"husky": "^4",
"lint-staged": ">=10.5.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.66.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^4.1.0",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.0.1",
"typescript": "^4.2.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,scss}": "prettier --write"
}
}