This repository was archived by the owner on Mar 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 KB
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": "terraformer",
"version": "1.0.12",
"description": "A Geo-toolkit built in Javascript.",
"main": "terraformer.js",
"typings": "terraformer.d.ts",
"devDependencies": {
"gh-release": "^3.5.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-complexity": "^1.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jasmine": "^2.0.3",
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-uglify": "~4.0.1",
"grunt-gh-pages": "~3.1.0",
"grunt-middleman": "~0.2.0",
"grunt-template-jasmine-istanbul": "~0.2.4",
"jasmine": "^2.8.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
},
"files": [
"terraformer.min.js",
"terraformer.d.ts"
],
"scripts": {
"pretest": "grunt lint",
"test": "npm run test:node && grunt test",
"test:node": "jasmine --config=jasmine.json",
"test:ts": "tslint test.ts index.d.ts && tsc -p tsconfig.json && node test.js",
"release": "./release.sh"
},
"repository": {
"type": "git",
"url": "git://github.com/esri/terraformer.git"
},
"author": "Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"contributors": [
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"Jerry Sievert <jsievert@esri.com> (http://legitimatesounding.com)"
],
"license": "MIT",
"optionalDependencies": {
"@types/geojson": "^7946.0.0"
},
"engines": {
"node": ">=4.2.6"
}
}