-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.78 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
{
"name": "ole",
"version": "0.6.3",
"description": "Library to integrate OpenLayers 3 with Esri ArcGIS Server REST API",
"main": "dist/ole.js",
"scripts": {
"start:ole": "node_modules/.bin/watchify -t babelify src/index.js --standalone ole -o examples/ole-debug.js",
"start:server": "node_modules/.bin/st -nc",
"start": "node_modules/.bin/npm-run-all --parallel start:ole start:server",
"build:min": "node_modules/.bin/browserify -p browserify-header -p browserify-derequire -t babelify -p [minifyify --no-map] src/index.js --standalone ole -o dist/ole.js",
"build:debug": "node_modules/.bin/browserify -p browserify-header -p browserify-derequire -t babelify src/index.js --standalone ole -o dist/ole-debug.js",
"build": "node_modules/.bin/npm-run-all --parallel build:min build:debug",
"lint": "node_modules/.bin/eslint src",
"test": "node_modules/.bin/phantomjs node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js test/index.html"
},
"repository": {
"type": "git",
"url": "https://github.com/boundlessgeo/ole.git"
},
"keywords": [
"openlayers",
"esri",
"arcgis",
"rest"
],
"author": "Boundless",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/boundlessgeo/ole/issues"
},
"homepage": "https://github.com/boundlessgeo/ole",
"devDependencies": {
"babelify": "7.2.0",
"babel-preset-es2015": "^6.1.18",
"browserify": "12.0.1",
"browserify-derequire": "0.9.4",
"browserify-header": "0.9.2",
"eslint": "1.9.0",
"expect.js": "0.3.1",
"fs-extra": "0.26.2",
"minifyify": "7.1.0",
"mocha": "2.3.4",
"mocha-phantomjs-core": "1.3.0",
"npm-run-all": "1.3.1",
"openlayers": "3.16.0",
"phantomjs": "1.9.1 - 1.9.7-15",
"st": "1.0.0",
"watchify": "3.6.1"
}
}