forked from storelocatorjs/storelocator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.51 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
{
"name": "storelocatorjs",
"version": "2.1.0",
"description": "Storelocatorjs is a fast and lightweight Javascript library for build your own customizable store locator with a minimalist theme. The cloud function is included to handle store filter requests.",
"keywords": [
"cloud function",
"clusters",
"fetch",
"geolocation",
"google maps",
"google maps api",
"info window",
"javascript",
"maps",
"markers",
"responsive design",
"store locator"
],
"homepage": "https://yoriiis.github.io/storelocatorjs",
"bugs": "https://github.com/yoriiis/storelocatorjs/issues",
"repository": "https://github.com/yoriiis/storelocatorjs.git",
"author": "Yoriiis aka Joris Daniel (joris.daniel@gmail.com)",
"main": "dist/storelocator/js/storelocator.js",
"scripts": {
"build": "rm -rf ./dist/ && webpack --mode=production",
"build:jsdoc": "jsdoc --configure ./jsdoc.json",
"build:mkdocs": "rm -rf ./site/ && npm run build && npm run build:mkdocs:only && npm run create:demo",
"build:mkdocs:only": "python -m mkdocs build",
"create:demo": "cp -rv ./dist/. ./site/dist/",
"start": "rm -rf ./dist/ && webpack --mode=development",
"test:eslint": "eslint -c ./.eslintrc.js ./src/ ./functions/",
"test:stylelint": "stylelint './src/**/*.css' './docs/theme/assets/stylesheets/**/*.css' --config ./stylelint.config.js"
},
"devDependencies": {
"@babel/core": "7.7.7",
"@babel/plugin-transform-modules-commonjs": "7.7.5",
"@babel/preset-env": "7.7.7",
"babel-eslint": "10.0.3",
"babel-loader": "8.0.6",
"css-loader": "3.4.0",
"eslint": "4.19.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "3.1.0",
"expose-loader": "0.7.5",
"file-loader": "5.0.2",
"jsdoc": "3.6.3",
"mini-css-extract-plugin": "0.8.2",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-custom-media": "7.0.8",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"postcss-nested": "4.2.1",
"postcss-preset-env": "6.7.0",
"prettier-eslint": "9.0.1",
"prettier-stylelint": "0.4.2",
"progress-bar-webpack-plugin": "1.12.1",
"style-loader": "1.0.2",
"stylefmt": "6.0.3",
"stylelint": "10.1.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-standard": "19.0.0",
"svg-inline-loader": "0.8.0",
"terser-webpack-plugin": "2.3.1",
"webpack": "4.41.4",
"webpack-cli": "3.3.10",
"webpack-manifest-plugin": "2.2.0"
},
"engines": {
"node": "8.13.0",
"npm": "6.4.1"
}
}