-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.14 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-to-gml-3",
"version": "2.0.2",
"description": "a package to translate geojson to gml",
"main": "dist/common.js",
"module": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/SKalt/geojson-to-gml-3.2.1.git"
},
"scripts": {
"pretest": "npm run dev",
"test": "mocha --timeout 30000",
"make-docs": "node make-docs.js",
"dev": "rollup -c && npm run make-docs",
"build": "ENV=production rollup -c && npm run make-docs"
},
"keywords": [
"geojson",
"geoserver",
"GIS",
"GML",
"xml"
],
"author": "Steven Kalt",
"license": "GPL-3.0",
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.0.0",
"eslint-config-google": "^0.8.0",
"jsdoc-to-markdown": "^9.0.2",
"mocha": "^10.7.3",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^2.0.1",
"xsd-schema-validator": "^0.5.0"
}
}