This repository has been archived by the owner on Feb 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
97 lines (97 loc) · 2.64 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
{
"name": "algolia-places-react",
"version": "1.6.1",
"description": "Blazing fast address autocomplete React/preact component.",
"main": "dist/index.es.js",
"repository": "https://github.com/kontrollanten/algolia-places-react",
"author": "kontrollanten",
"license": "MIT",
"scripts": {
"build": "MINIMIZE=true webpack",
"build:es": "BUILD_ES=true webpack",
"cz": "git-cz",
"demo": "parcel e2e/index.html",
"demo:build": "parcel build e2e/index.html -d docs --public-url /",
"release": "standard-version",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"test": "jest",
"test:ci": "jest --coverage && codecov",
"lint": "eslint src e2e"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"files": [
"dist"
],
"keywords": [
"geocoder",
"geocoding",
"geo",
"algolia",
"react",
"preact",
"component"
],
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"@babel/core": "7.12.17",
"@babel/plugin-proposal-class-properties": "7.12.13",
"@babel/plugin-transform-react-jsx": "7.12.17",
"@babel/plugin-transform-runtime": "7.12.17",
"@babel/preset-env": "7.12.17",
"@babel/preset-react": "7.12.13",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"babel-loader": "8.2.2",
"chai": "4.3.0",
"codecov": "3.8.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.20.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"husky": "4.3.8",
"jest-cli": "26.6.3",
"parcel-bundler": "1.12.4",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-json-view": "1.21.1",
"react-markdown": "5.0.3",
"react-styleguidist": "11.1.5",
"rebass": "4.0.7",
"sinon": "9.2.4",
"sinon-chai": "3.5.0",
"standard-version": "9.1.1",
"string-replace-webpack-plugin": "0.1.3",
"styled-components": "5.2.1",
"webpack": "4.46.0",
"webpack-cli": "4.4.0"
},
"dependencies": {
"places.js": "1.19.0",
"prop-types": "^15.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}