You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
{
|
|
"name": "terraformer-wkt-parser",
|
|
"description": "Well-Known Text parser",
|
|
"version": "1.2.1",
|
|
"author": "Jerry Sievert <code@legitimatesounding.com> (http://legitimatesounding.com)",
|
|
"bugs": {
|
|
"url": "https://github.com/Esri/terraformer-wkt-parser/issues"
|
|
},
|
|
"contributors": [
|
|
"Patrick Arlt <parlt@esri.com>",
|
|
"John Gravois <jgravois@esri.com>"
|
|
],
|
|
"dependencies": {
|
|
"@types/geojson": "^1.0.0",
|
|
"terraformer": "~1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"gh-release": "^3.2.1",
|
|
"grunt": "^1.0.3",
|
|
"grunt-contrib-jasmine": "^2.0.1",
|
|
"grunt-contrib-uglify": "~2.0.0",
|
|
"grunt-template-jasmine-istanbul": "~0.2.4",
|
|
"grunt-vows": "~0.4.0",
|
|
"jasmine": "^2.8.0",
|
|
"jison": "~0.3.12",
|
|
"mkdirp": "^0.5.1",
|
|
"tslint": "^4.5.1",
|
|
"typescript": "^2.2.1",
|
|
"vows": "^0.8.2"
|
|
},
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"files": [
|
|
"terraformer-wkt-parser.min.js",
|
|
"terraformer-wkt-parser.d.ts"
|
|
],
|
|
"homepage": "http://terraformer.io",
|
|
"keywords": [
|
|
"WKT",
|
|
"GIS",
|
|
"Geography"
|
|
],
|
|
"license": "MIT",
|
|
"main": "terraformer-wkt-parser.js",
|
|
"typings": "terraformer-wkt-parser.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:Esri/terraformer-wkt-parser.git"
|
|
},
|
|
"scripts": {
|
|
"prepare": "grunt wkt-parser && grunt uglify",
|
|
"test": "npm run test:node && grunt test",
|
|
"test:node": "jasmine --config=jasmine.json",
|
|
"test:ts": "tslint test.ts terraformer-wkt-parser.d.ts && tsc -p tsconfig.json && node test.js",
|
|
"release": "./release.sh"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.2.6"
|
|
}
|
|
}
|
|
|