forked from jonataswalker/ol-contextmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "ol3-contextmenu",
"version": "2.3.0",
"description": "Custom Context Menu for Openlayers 3",
"main": "build/ol3-contextmenu.js",
"author": "Jonatas Walker",
"homepage": "https://github.com/jonataswalker/ol3-contextmenu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jonataswalker/ol3-contextmenu.git"
},
"bugs": {
"url": "https://github.com/jonataswalker/ol3-contextmenu/issues"
},
"rollup": {
"entry": "src/js/base.js",
"dest": "build/ol3-contextmenu-debug.js",
"moduleName": "ContextMenu"
},
"dependencies": {
"openlayers": "^3.18.2"
},
"devDependencies": {
"autoprefixer": "^6.5.0",
"casperjs": "^1.1.3",
"clean-css": "^3.4.20",
"eslint": "^3.10.1",
"eslint-config-jwalker": "^1.11.0",
"node-sass": "^3.10.1",
"node-sass-json-importer": "^2.1.1",
"nodemon": "^1.10.2",
"parallelshell": "^2.0.0",
"postcss-cli": "^2.6.0",
"rollup": "^0.36.1",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-json": "^2.0.2",
"uglify-js": "^2.7.3"
},
"eslintConfig": {
"extends": "jwalker",
"rules": {
"no-use-before-define": 1
},
"globals": {
"ol": true,
"casper": true,
"patchRequire": true,
"phantom": true
}
}
}