forked from Esri/terraformer-arcgis-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "terraformer-arcgis-parser",
"version": "1.1.0",
"description": "ArcGIS JSON format parser and converter",
"main": "terraformer-arcgis-parser.js",
"files": [
"index.d.ts",
"terraformer-arcgis-parser.min.js",
"terraformer-arcgis-parser.d.ts"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:node && grunt test",
"test:node": "jasmine --config=jasmine.json",
"test:ts": "tsc"
},
"repository": {
"type": "git",
"url": "[email protected]:Esri/terraformer-arcgis-parser.git"
},
"keywords": [
"ArcGIS",
"Esri",
"GIS",
"Geography"
],
"author": "Patrick Arlt <[email protected]> (http://patrickarlt.com)",
"license": "MIT",
"dependencies": {
"@types/geojson": "^1.0.0",
"terraformer": "~1.0.4"
},
"devDependencies": {
"benchmark": "~1.0.0",
"gh-release": "^3.2.1",
"grunt": "^1.0.3",
"grunt-complexity": "~0.1.3",
"grunt-contrib-jasmine": "^2.0.1",
"grunt-contrib-uglify": "~2.0.0",
"grunt-template-jasmine-istanbul": "~0.2.4",
"jasmine": "^3.1.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
}
}