-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.4 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "jest-geojson",
"version": "1.6.0",
"description": "Additional Jest matchers for GeoJSON",
"keywords": [
"jest",
"jest-tests",
"jest-geojson",
"geojson",
"gis",
"matchers",
"jest-matchers",
"test",
"testing",
"assertions"
],
"homepage": "https://m-scott-lassiter.github.io/jest-geojson/",
"bugs": "https://github.com/M-Scott-Lassiter/jest-geojson/issues",
"license": "MIT",
"author": "M. Scott Lassiter",
"files": [
"./src",
"LICENSE",
"package.json",
"package-lock.json"
],
"exports": {
".": "./src/matchers.js",
"./core": "./src/core.js",
"./setup/all": "./src/setup/all.js",
"./setup/boundingBoxes": "./src/setup/boundingBoxes.js",
"./setup/coordinates": "./src/setup/coordinates.js",
"./setup/featureCollections": "./src/setup/featureCollections.js",
"./setup/features": "./src/setup/features.js",
"./setup/functional": "./src/setup/functional.js",
"./setup/geometries": "./src/setup/geometries.js"
},
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/M-Scott-Lassiter/jest-geojson.git"
},
"scripts": {
"build": "npm run lint && npm run test && npm run docs && npm run tableofcontents && npm run format && echo \"Build process complete.\" && exit 0",
"cz": "cz",
"docs": "jsdoc -c jsdoc.json -d ./docs",
"format": "npx prettier . --write",
"tableofcontents": "markdown-toc -i ./README.md && markdown-toc -i ./CONTRIBUTING.md",
"test": "jest --coverage --verbose",
"test:coordinates": "jest tests/coordinates --coverage --verbose",
"test:boundingboxes": "jest tests/boundingBoxes --coverage --verbose",
"test:featurecollections": "jest tests/featureCollections --coverage --verbose",
"test:features": "jest tests/features --coverage --verbose",
"test:functional": "jest tests/functional --coverage --verbose",
"test:geometries": "jest tests/geometries --coverage --verbose",
"lint": "eslint . --ext .js --fix",
"prepare": "husky install",
"watch": "jest --watch --coverage --verbose"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@m-scott-lassiter/semantic-release-github-npm-config": "^2.0.0",
"@types/jest": "^27.5.0",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cz-customizable": "^6.3.0",
"docdash": "^1.2.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"jsdoc": "^3.6.10",
"lint-staged": "^12.4.1",
"markdown-toc": "^1.2.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"peerDependencies": {
"jest": ">=24.0.0"
},
"engines": {
"node": ">=16"
},
"release": {
"extends": "@m-scott-lassiter/semantic-release-github-npm-config"
}
}