forked from Qtvz/Kriging-Contour-Clip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.59 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
{
"author": "freegis",
"bugs": {
"url": "https://github.com/d3/d3-contour/issues"
},
"bundleDependencies": false,
"dependencies": {
"@turf/intersect": "^6.1.3",
"d3-contour": "^1.3.2"
},
"deprecated": false,
"description": "Compute contour polygons using marching squares.",
"devDependencies": {
"eslint": "5",
"rollup": "0.64",
"rollup-plugin-terser": "1",
"tape": "4"
},
"jsdelivr": "dist/kriging-contour.min.js",
"keywords": [
"kriging",
"d3-contour",
"contour",
"kriging-contour"
],
"license": "BSD-3-Clause",
"main": "dist/kriging-contour.js",
"module": "src/index.js",
"name": "kriging-contour",
"repository": {
"type": "git",
"url": "git+https://github.com/freegis/kriging-contour.git"
},
"scripts": {
"postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd - && zip -j dist/${npm_package_name}.zip -- LICENSE README.md dist/${npm_package_name}.js dist/${npm_package_name}.min.js",
"prepublishOnly": "rm -rf dist && npm test",
"pretest": "rollup -c",
"test": "tape 'test/**/*-test.js' && eslint src"
},
"unpkg": "dist/kriging-contour.min.js",
"version": "1.0.0"
}