-
Notifications
You must be signed in to change notification settings - Fork 388
/
package.json
132 lines (132 loc) · 3.85 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-places-autocomplete",
"version": "7.3.0",
"description": "A React component for Google Maps Places Autocomplete",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "jest /src",
"test:update": "jest /src --updateSnapshot",
"test:watch": "jest /src --watch",
"test:coverage": "jest /src --coverage",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"demo": "webpack-dev-server --config demo/webpack.config.js --debug --content-base demo --inline --hot --colors",
"demo:test": "mocha demo/tests/index.spec.js --compilers js:babel-register",
"demo:build": "rimraf demo/dist && webpack --config demo/webpack.config.js -p",
"demo:deploy": "gh-pages -d demo/dist",
"prepublish": "npm run build",
"postpublish": "npm run demo:deploy",
"prettier": "prettier --write \"src/**/*.js\" \"demo/**/*.js\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format-code": "npm run prettier & npm run lint:fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"repository": {
"type": "git",
"url": "https://github.com/kenny-hibino/react-places-autocomplete.git"
},
"keywords": [
"React.js",
"React",
"react-component",
"place",
"places",
"google-maps",
"google-map",
"places-autocomplete",
"autocomplete",
"google",
"maps",
"latitude",
"longitude",
"geocode",
"geocoder"
],
"files": [
"dist",
"README.md"
],
"author": "Ken Hibino <[email protected]> (http://www.kenhibino.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenny-hibino/react-places-autocomplete/issues"
},
"homepage": "https://github.com/kenny-hibino/react-places-autocomplete#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "8.2.2",
"babel-jest": "22.4.3",
"babel-loader": "^6.3.2",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
"babel-preset-env": "1.6.1",
"babel-preset-react": "^6.23.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "6.26.0",
"commitizen": "2.8.2",
"copy-webpack-plugin": "^4.0.1",
"cz-conventional-changelog": "1.1.6",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.3",
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.7.0",
"file-loader": "0.11.2",
"gh-pages": "^0.12.0",
"ghooks": "1.3.2",
"image-webpack-loader": "3.3.1",
"jest": "22.4.3",
"json-loader": "0.5.4",
"npm-run-all": "2.3.0",
"prettier": "1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "16.2.0",
"rimraf": "2.5.3",
"semantic-release": "^4.3.5",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test"
}
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": ">=0.14.7"
},
"jest": {
"setupFiles": [
"./src/tests/helpers/jestSetup.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/*.js"
]
}
}