-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "turf-flip",
"version": "1.1.0",
"description": "turf flip module",
"main": "index.js",
"scripts": {
"lint": "eslint index.js test.js",
"pretest": "npm run lint",
"test": "tape test.js",
"doc": "dox -r < index.js | doxme --readme > README.md"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"strict": [
1
],
"indent": [
2,
2,
{
"SwitchCase": 1
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/Turfjs/turf-flip.git"
},
"keywords": [
"turf",
"geojson",
"coordinate",
"flip"
],
"author": "morganherlocker",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turfjs/turf-flip/issues"
},
"homepage": "https://github.com/Turfjs/turf-flip",
"devDependencies": {
"benchmark": "^1.0.0",
"tape": "^3.5.0",
"turf-featurecollection": "^1.0.0",
"turf-linestring": "^1.0.1",
"turf-point": "^2.0.0",
"turf-polygon": "^1.0.2",
"dox": "^0.6.1",
"doxme": "^1.4.3",
"eslint": "^1.10.3",
"eslint-config-mourner": "^1.0.1"
},
"dependencies": {
"turf-meta": "^1.0.2"
}
}