-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 948 Bytes
/
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
{
"name": "simplify-geometry",
"version": "0.0.2",
"description": "Simplify geometry using the Ramer–Douglas–Peucker algorithm.",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R spec"
},
"repository": {
"type": "git",
"url": "git://github.com/seabre/simplify-geometry.git"
},
"keywords": [
"geometry",
"Douglas–Peucker",
"simplify"
],
"author": {
"name": "Sean Brewer",
"email": "seabre986@gmail.com",
"url": "https://github.com/seabre"
},
"testling": {
"browsers": [
"ie/6..latest",
"chrome/20..latest",
"firefox/10..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/4.2"
],
"harness" : "mocha",
"files": "test/*.js"
},
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"mocha": "~1.12.0"
}
}