-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 897 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
30
31
32
33
{
"name": "lod-image-viewer",
"version": "1.0.0",
"description": "View LOD (x,y,z) image tiles",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jackytck/lod-image-viewer.git"
},
"scripts": {
"lint": "eslint *.js",
"test": "yarn lint",
"start": "parcel index.html",
"build": "parcel build --public-url https://jackytck.github.io/lod-image-viewer index.html",
"deploy": "gh-pages -d dist"
},
"author": "Jacky Tang",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.1.1",
"parcel-bundler": "^1.12.4"
},
"dependencies": {
"ol": "^6.1.1"
}
}