-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.59 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
{
"name": "pgc-coordinate-converter",
"version": "1.0.0",
"description": "Web application for converting geographic coordinates.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/PolarGeospatialCenter/pgc-coordinate-converter.git"
},
"keywords": [
"PGC",
"Polar",
"Geospatial",
"Center",
"geographic",
"coordinates",
"coordinate",
"converter",
"Antarctica"
],
"author": "Brad Herried <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PolarGeospatialCenter/pgc-coordinate-converter/issues"
},
"homepage": "https://github.com/PolarGeospatialCenter/pgc-coordinate-converter",
"devDependencies": {
"browser-sync": "^2.8.0",
"browserify": "^11.0.0",
"browserify-shim": "^3.8.10",
"chai": "^3.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-jshint": "^1.11.2",
"gulp-less": "^3.0.3",
"gulp-minify-css": "^1.2.0",
"gulp-mocha-phantomjs": "^0.8.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"mocha": "^2.2.5",
"vinyl-source-stream": "^1.1.0"
},
"browser": {
"jquery-validate": "./client/vendor/jquery.validate.min.js"
},
"browserify-shim": {
"jquery": "$",
"bootstrap": {
"depends": ["jquery:jQuery"]
},
"jquery-validate" : {
"depends":["jquery:jQuery"]
}
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"dependencies": {
"jquery": "^2.1.4",
"proj4": "^2.3.6"
}
}