-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "geeo-javascript",
"version": "1.0.1",
"description": "Geeo SDK for javascript",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib && webpack lib/index.js dist/geeo.js && uglifyjs dist/geeo.js -o dist/geeo.min.js",
"doc": "jsdoc2md src/index.js > doc/api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeeoIO/geeo-javascript.git"
},
"keywords": [
"geeo",
"geo",
"location"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeeoIO/geeo-javascript/issues"
},
"homepage": "https://github.com/GeeoIO/geeo-javascript#readme",
"dependencies": {
"whatwg-fetch": "^2.0.3",
"wolfy87-eventemitter": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"jsdoc-to-markdown": "^3.0.0",
"uglify-js": "^2.8.12",
"webpack": "^2.2.1"
}
}