-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "geojson-equality",
"version": "0.2.1",
"description": "Check two valid geojson geometries for equality.",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify index.js --debug --standalone GeojsonEquality | exorcist dist/geojson-equality.js.map > dist/geojson-equality.js",
"build-min": "browserify index.js --standalone GeojsonEquality | uglifyjs -c -m > dist/geojson-equality.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "git://github.com/geosquare/geojson-equality.git"
},
"bugs": {
"url": "https://github.com/geosquare/geojson-equality/issues"
},
"homepage": "https://github.com/geosquare/geojson-equality",
"keywords": [
"geojson",
"equality",
"equal",
"assertion"
],
"author": "Gagan Bansal <[email protected]>",
"contributors": [
"Tim Oram <[email protected]>",
"Wojciech Maj < [email protected]"
],
"license": "MIT",
"dependencies": {
"dequal": "^2.0.3"
},
"devDependencies": {
"browserify": "~5.10.1",
"chai": "~1.9.1",
"exorcist": "^0.4.0",
"mocha": "~1.21.4",
"uglify-js": "^2.6.0",
"watchify": "~1.0.2"
}
}