-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 984 Bytes
/
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
{
"name": "map4sci",
"version": "1.0.0",
"description": "map app",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist .cache",
"deploy": "gh-pages -d dist",
"start:openlayers": "parcel map/openlayers-version/index.html -p 8087 --host localhost",
"build:openlayers": "parcel build --public-url . map/openlayers-version/index.html",
"deploy:openlayers": "npm-run-all clean build:openlayers deploy",
"start:mapbox": "parcel map/mapbox-version/index.html -p 8087 --host localhost",
"build:mapbox": "parcel build --public-url . map/mapbox-version/index.html",
"deploy:mapbox": "npm-run-all clean build:mapbox deploy"
},
"author": "Iqbal Hossain",
"license": "ISC",
"dependencies": {
"ol": "^5.3.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"gh-pages": "^2.0.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"rimraf": "^2.6.3"
}
}