-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
74 lines (74 loc) · 1.99 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
{
"name": "pgm-multiloc",
"version": "0.0.1",
"description": "A tool to visualize coverage of multiple instances of PokemonGo-Map",
"keywords": [
"pogomap"
],
"homepage": "https://github.com/beccasafan/pgm-multiloc",
"bugs": "https://github.com/beccasafan/pgm-multiloc/issues",
"license": "MIT",
"author": "beccasafan",
"main": "gulpfile.js",
"repository": "https://github.com/beccasafan/pgm-multiloc",
"scripts": {
"postinstall": "npm run typings install && npm run build",
"build": "gulp default",
"typings": "typings",
"gulp": "gulp",
"watch": "gulp watch"
},
"devDependencies": {
"babel-preset-es2015": "~6.14.0",
"babelify": "~7.3.0",
"browserify": "~13.1.0",
"browserify-shim": "~3.8.12",
"eslint": "~3.5.0",
"eslint-config-standard": "~6.0.0",
"eslint-plugin-promise": "~2.0.1",
"eslint-plugin-standard": "~2.0.0",
"foundation-sites": "~6.2.3",
"gulp": "~3.9.1",
"gulp-concat": "~2.6.0",
"gulp-htmlmin": "~2.0.0",
"gulp-plumber": "~1.1.0",
"gulp-rename": "~1.2.2",
"gulp-sass": "~2.3.2",
"gulp-sourcemaps": "~1.6.0",
"gulp-uglify": "~2.0.0",
"gutil": "~1.6.4",
"jquery": "~3.1.0",
"knockout": "~3.4.0",
"load-google-maps-api": "~0.0.2",
"lodash": "~4.16.1",
"tsify": "~1.0.6",
"tslint": "~3.15.1",
"typescript": "~1.8.10",
"typings": "~1.3.3",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"vinyl-transform": "~1.0.0",
"watchify": "~3.7.0"
},
"browser": {
"jquery-migrate": "./src/scripts/vendor/jquery.migrate.js",
"jquery-steps": "./node_modules/jquery-steps/build/jquery.steps.min.js"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "$",
"foundation-sites": {
"depends": "jquery:jQuery"
},
"jquery-migrate": {
"depends": "jquery:jQuery"
},
"load-google-maps-api": "loadGoogleMapsApi",
"knockout": "ko",
"lodash": "_"
}
}