-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "field-of-view",
"version": "0.2.2",
"description": "Creates photo fields of view from GeoJSON files",
"repository": {
"type": "git",
"url": "https://github.com/nypl-spacetime/field-of-view"
},
"files": [
"dist",
"field-of-view.png",
"index.js"
],
"main": "dist/field-of-view.node.js",
"browser": "dist/field-of-view.min.js",
"module": "index",
"jsnext:main": "index",
"scripts": {
"pretest": "rimraf dist && mkdir dist && npm run build",
"build": "./node_modules/.bin/rollup -c rollup.config.browser.js && ./node_modules/.bin/rollup -c rollup.config.node.js",
"test": "npm run lint && tap test/*.js",
"lint": "standard index.js test/index.js",
"prepublish": "npm run test"
},
"author": "Bert Spaan",
"license": "MIT",
"dependencies": {
"@turf/bearing": "^3.7.0",
"@turf/centroid": "^3.7.0",
"@turf/destination": "^3.7.0",
"@turf/distance": "^3.7.0"
},
"devDependencies": {
"standard": "^8.6.0",
"tap": "^8.0.1",
"babel-preset-es2015-rollup": "^3.0.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2"
}
}