-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.45 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
{
"name": "geochart-geojson",
"title": "Geochart GeoJSON",
"description": "Create charts very similar to the Google Charts geochart, but with GeoJSON support.",
"version": "1.5.0",
"main": "js/geochart-geojson.js",
"repository": {
"type": "git",
"url": "git+https://github.com/rarylson/geochart-geojson.git"
},
"keywords": [],
"author": {
"name": "Rarylson Freitas",
"email": "rarylson@gmail.com"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rarylson/geochart-geojson/issues"
},
"homepage": "https://github.com/rarylson/geochart-geojson#readme",
"scripts": {
"start": "http-server -a localhost -p 8080",
"jshint": "jshint js/geochart-geojson.js",
"babel": "babel --presets env js/geochart-geojson.js -o build/geochart-geojson.js",
"uglify": "uglifyjs build/geochart-geojson.js --compress --mangle --output build/geochart-geojson.min.js",
"build": "npm run babel && npm run uglify",
"changelog_version": "sed -i \"s/^X.Y.Z$/$(node -p \"require('./package.json').version\")/\" CHANGELOG.md",
"preversion": "npm run jshint",
"version": "npm run changelog_version && git add CHANGELOG.md && npm run build && git add build/geochart-geojson.js build/geochart-geojson.min.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"http-server": "^0.10.0",
"jshint": "^2.9.5",
"uglify-js": "^3.1.8"
}
}