-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "react-place",
"version": "0.6.2",
"description": "React geo location component based on Google Maps",
"main": "lib/Location.js",
"author": {
"name": "Krasimir Tsonev",
"email": "[email protected]",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"keywords": [
"react",
"location",
"googlemaps",
"geo",
"react-component"
],
"repository": {
"type": "git",
"url": "[email protected]:krasimir/react-place.git"
},
"scripts": {
"dev": "webpack --watch --inline",
"prepublish": "babel ./src --out-dir ./lib --source-maps --presets es2015,react --plugins babel-plugin-add-module-exports && browserify ./lib/Location.js -o ./build/react-place.js --transform browserify-global-shim --standalone ReactPlace && uglifyjs ./build/react-place.js --compress --mangle --output ./build/react-place.min.js --source-map ./build/react-place.min.js.map",
"test": "karma start",
"test:ci": "watch 'npm run test' src/",
"example-es5-browserify": "browserify ./example-es5-browserify/src/index.js -o ./example-es5-browserify/build/app.js"
},
"dependencies": {
"awesomplete": "1.1.0",
"promise-polyfill": "2.1.0"
},
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.1.18",
"babel-core": "6.6.5",
"babel-eslint": "5.0.0",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "0.1.1",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"browserify": "12.0.1",
"browserify-global-shim": "1.0.0",
"chai": "3.3.0",
"core-js": "1.1.4",
"eslint": "1.4.3",
"eslint-loader": "1.0.0",
"eslint-plugin-react": "3.4.1",
"karma": "0.13.19",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.6.0",
"karma-chai-sinon": "0.1.5",
"karma-chrome-launcher": "0.2.0",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.1.1",
"karma-phantomjs-launcher": "0.2.1",
"karma-sinon": "1.0.4",
"karma-sinon-chai": "1.1.0",
"karma-sourcemap-loader": "0.3.5",
"karma-webpack": "1.7.0",
"phantomjs": "^2.1.7",
"prop-types": "^15.6.0",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^15.2.1",
"uglify-js": "2.6.1",
"watch": "0.16.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.11.0"
},
"browserify-global-shim": {
"react": "React",
"react-dom": "ReactDOM"
}
}