-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pouchdb-geospatial",
"version": "0.4.0",
"description": "PouchDB geospatial query plugin.",
"main": "pouchdb-geospatial.js",
"module": "./lib/index.js",
"unpkg": "pouchdb-geospatial.min.js",
"jsdelivr": "pouchdb-geospatial.min.js",
"scripts": {
"build": "run-s lint bundle docs:build",
"bundle": "rollup --silent -c",
"docs": "run-s docs:clean docs:build docs:deploy",
"docs:build": "jsdoc -t ./node_modules/ink-docstrap/template -d docs/api -R readme.md -r lib",
"docs:deploy": "gh-pages -d docs",
"docs:clean": "trash docs/api",
"lint": "run-s lint:js lint:md",
"lint:js": "eslint rollup.config.js ./lib/*.js ./lib/**/*.js",
"lint:md": "remark -q .",
"prepare": "npm run build",
"test": "run-s test:lint test:server",
"test:server": "bash ./bin/test.sh",
"test:build": "nyc --reporter=lcov --reporter=text tap -t120 ./test/test.js",
"test:lint": "eslint ./test/test.js"
},
"files": [
"lib/",
"pouchdb-geospatial.js",
"pouchdb-geospatial.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dpmcmlxxvi/pouchdb-geospatial.git"
},
"keywords": [
"pouchdb",
"plugin",
"geospatial",
"DE-9IM",
"database",
"query"
],
"author": "Daniel Pulido <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dpmcmlxxvi/pouchdb-geospatial/issues"
},
"homepage": "https://github.com/dpmcmlxxvi/pouchdb-geospatial#readme",
"dependencies": {
"@turf/turf": "5.1.6",
"de9im": "1.3.1",
"pouchdb-promise": "6.4.3",
"rbush": "2.0.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"esm": "^3.2.25",
"gh-pages": "^3.2.3",
"glob": "^7.2.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.10",
"np": "^7.6.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"path": "^0.12.7",
"pouchdb": "^7.2.2",
"pouchdb-server": "^4.2.0",
"remark-cli": "^10.0.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"rollup": "^2.67.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"tap": "^15.1.6",
"terser": "^5.10.0",
"trash-cli": "^5.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-markdown-style-guide"
]
}
}