forked from geotiffjs/geotiff.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.02 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
59
60
61
62
63
64
65
66
67
68
{
"name": "geotiff",
"version": "1.0.0-beta.6",
"description": "GeoTIFF image decoding in JavaScript",
"repository": "https://github.com/geotiffjs/geotiff.js",
"keywords": [
"TIFF",
"GeoTIFF",
"image",
"raster"
],
"main": "dist/main.js",
"dependencies": {
"pako": "^1.0.3",
"xmldom": "0.1.*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"detect-node": "^2.0.3",
"es6-promise": "^4.0.5",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "^4.16.3",
"isomorphic-fetch": "^2.2.1",
"jsdoc": "^3.5.5",
"jsdoc-babel": "^0.2.1",
"jshint-stylish": "^2.2.1",
"mocha": "^3.1.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"worker-loader": "^1.1.1"
},
"scripts": {
"dev": "webpack-dev-server -d -w --content-base test",
"watch": "webpack -d -w",
"build:clean": "rm -rf dist/*",
"bundle:dev": "webpack -d ",
"bundle:prod": "NODE_ENV=production webpack -p",
"build:babel": "babel src/ -d dist",
"build:babel:watch": "babel src/ -d dist -w",
"build": "npm run build:clean ; npm run bundle:dev ; npm run bundle:prod ; npm run build:babel",
"test": "mocha --compilers js:babel-core/register --require babel-polyfill",
"lint": "eslint src",
"docs": "rm -rf docs/*; jsdoc -c .jsdoc.json -r src README.md -d docs",
"prepublish": "npm run build",
"prepare": "npm run build"
},
"author": "Fabian Schindler",
"contributors": [
{
"name": "Fabian Schindler",
"email": "fabian.schindler@eox.at"
}
],
"license": "MIT"
}