72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
|
{
|
||
|
"name": "landxml",
|
||
|
"version": "1.0.0",
|
||
|
"description": "A LandXML to GeoJSON conversion library",
|
||
|
"main": "index.js",
|
||
|
"directories": {
|
||
|
"lib": "lib"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "jest",
|
||
|
"build": "webpack --progress --color --config webpack.prod.js",
|
||
|
"watch": "webpack --watch --color --config webpack.dev.js"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://forge.cadoles.com/Pyxis/landxml.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"landxml",
|
||
|
"geojson"
|
||
|
],
|
||
|
"author": "Cadoles <contact@cadoles.com>",
|
||
|
"license": "GPL-3.0",
|
||
|
"dependencies": {
|
||
|
"@turf/area": "^6.0.1",
|
||
|
"@turf/clone": "^6.0.2",
|
||
|
"@turf/helpers": "^6.1.4",
|
||
|
"@turf/transform-translate": "^5.1.5",
|
||
|
"@turf/union": "^6.0.3",
|
||
|
"proj4": "^2.6.3",
|
||
|
"randomcolor": "^0.6.2",
|
||
|
"react-native-xml2js": "^1.0.3",
|
||
|
"xml2js": "^0.4.23",
|
||
|
"yargs": "^16.2.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/plugin-transform-modules-umd": "^7.12.1",
|
||
|
"@babel/preset-env": "^7.12.10",
|
||
|
"@babel/preset-typescript": "^7.12.7",
|
||
|
"@tsconfig/recommended": "^1.0.1",
|
||
|
"babel-polyfill": "^6.26.0",
|
||
|
"clean-webpack-plugin": "^3.0.0",
|
||
|
"http-server": "^0.12.3",
|
||
|
"ifdef-loader": "^2.1.5",
|
||
|
"jest": "^26.6.3",
|
||
|
"ts-loader": "^8.0.11",
|
||
|
"typescript": "^4.1.2",
|
||
|
"webpack": "^5.10.0",
|
||
|
"webpack-cli": "^4.2.0",
|
||
|
"webpack-merge": "^5.5.0"
|
||
|
},
|
||
|
"babel": {
|
||
|
"presets": [
|
||
|
[
|
||
|
"@babel/preset-env",
|
||
|
{
|
||
|
"targets": {
|
||
|
"browsers": [
|
||
|
"ie < 8"
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"@babel/preset-typescript"
|
||
|
],
|
||
|
"plugins": [
|
||
|
"@babel/proposal-class-properties",
|
||
|
"@babel/proposal-object-rest-spread"
|
||
|
]
|
||
|
}
|
||
|
}
|