forked from ghettovoice/ol-tilecache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "ol3-tilecache",
"version": "1.2.3",
"description": "OpenLayer 3 tile url function to load tile seeded with TileCache url scheme",
"main": "dist/bundle.js",
"module": "src/index.js",
"scripts": {
"release": "webpack --release --verbose",
"build": "webpack --build --verbose",
"serv": "webpack-dev-server",
"start": "npm run serv",
"test": "mocha-phantomjs tests/test.html"
},
"homepage": "https://github.com/ghettovoice/ol3-tilecache",
"repository": {
"type": "git",
"url": "https://github.com/ghettovoice/ol3-tilecache.git"
},
"keywords": [
"ol3",
"openlayers",
"tilecache"
],
"author": "Vladimir Vershinin (https://github.com/ghettovoice)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghettovoice/ol3-tilecache/issues"
},
"dependencies": {},
"peerDependencies": {
"ol": ">=4.0.0"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"lodash": "^4.16.4",
"mocha": "^3.1.2",
"mocha-phantomjs": "^4.1.0",
"ol": "^4.0.0",
"progress-bar-webpack-plugin": "^1.9.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"files": [
"LICENSE",
"README.md",
"dist",
"src"
]
}