forked from hibiken/react-places-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.83 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
{
"name": "react-places-autocomplete",
"version": "0.0.0-semantically-released",
"description": "A React component for Google Maps Places Autocomplete",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"watch:test": "npm t -- -w",
"test": "mocha src/tests/index.spec.js --compilers js:babel-register",
"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",
"deploy": "gh-pages -d demo:build",
"postpublish": "npm run deploy"
},
"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.10.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.11.0",
"babel-register": "6.9.0",
"chai": "3.5.0",
"chai-enzyme": "0.5.0",
"commitizen": "2.8.2",
"copy-webpack-plugin": "^4.0.1",
"cz-conventional-changelog": "1.1.6",
"enzyme": "2.4.1",
"gh-pages": "^0.12.0",
"ghooks": "1.3.2",
"jsdom": "9.4.1",
"json-loader": "0.5.4",
"mocha": "2.5.3",
"npm-run-all": "2.3.0",
"nyc": "7.0.0",
"react-addons-test-utils": "15.4.2",
"react-dom": "15.4.2",
"rimraf": "2.5.3",
"semantic-release": "^4.3.5",
"sinon": "1.17.4",
"webpack": "1.13.1",
"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": {
"react": "15.4.2"
}
}