-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.73 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
{
"name": "location-autocomplete",
"version": "1.2.4",
"description": "React location field component, wired with Google's API for autocomplete functionality.",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src/location-autocomplete/index.jsx --out-file index.js",
"bundle": "webpack ./src/index.jsx bundle.js",
"test": "jest",
"serve": "node_modules/.bin/webpack-dev-server",
"lint": "./node_modules/.bin/eslint ./src/** --ext .js --ext .jsx",
"lint:test": "./node_modules/.bin/eslint ./spec/** --ext .js --ext .jsx",
"start": "./node_modules/.bin/webpack --config webpack.config.js --watch"
},
"author": "Jennifer Sardina <jenni.sardina@gmail.com>",
"keywords": [
"location-field",
"autocomplete-component",
"react-autocomplete",
"google-places",
"google-places-autocomplete"
],
"bugs": {
"url": "https://github.com/jmsardina/location-autocomplete/issues"
},
"homepage": "https://github.com/jmsardina/location-autocomplete",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.26.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^23.6.0",
"json-loader": "^0.5.4",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.9.7"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.7.0"
}
}