forked from kontrollanten/algolia-places-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.66 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.4.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 --output-filename=index.js",
"build:es": "webpack --output-filename=index.es.js",
"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.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-transform-react-jsx": "7.3.0",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@commitlint/travis-cli": "8.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"codecov": "3.5.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.13.0",
"husky": "2.4.0",
"jest-cli": "24.8.0",
"parcel-bundler": "1.12.3",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-json-view": "1.19.1",
"react-markdown": "4.0.8",
"react-styleguidist": "9.1.5",
"rebass": "3.1.1",
"sinon": "7.3.2",
"sinon-chai": "3.3.0",
"standard-version": "6.0.1",
"string-replace-webpack-plugin": "0.1.3",
"styled-components": "4.3.1",
"webpack": "4.33.0",
"webpack-cli": "3.3.3"
},
"dependencies": {
"places.js": "1.16.4",
"prop-types": "^15.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}