-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 773 Bytes
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
{
"name": "instimapweb",
"version": "1.0.9",
"description": "A web implementation of InstiMap in Openlayers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/pulsejet/InstiMapWeb"
},
"scripts": {
"build-demo": "browserify -g [ babelify --presets [ \"@babel/preset-env\" ] ] demo/demo.js -o demo/bundle.js",
"build": "tsc"
},
"author": "Varun Patil <radialapps@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/ol": "4.6.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babelify": "^10.0.0",
"typescript": "^3.3.3"
},
"dependencies": {
"ol": "4.6.4"
}
}