-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
93 lines (93 loc) · 3.26 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
{
"name": "koop",
"version": "1.0.0",
"description": "Monorepo for Koop's core dependencies",
"scripts": {
"lint": "eslint \"packages/**/*.js\"",
"lint:ci": "eslint \"packages/**/*.js\" --rule linebreak-style:0 ",
"lint:fix": "eslint \"packages/**/*.js\" --fix",
"prepare": "husky install",
"commit": "cz",
"precommit": "lint-staged && npm test --workspaces",
"test": "npm test --workspaces",
"test:e2e": "cross-env SUPPRESS_NO_CONFIG_WARNING=true DATA_DIR=./test/provider-data jest",
"cov:all:html": "node ci/run-test-coverage-analysis && node ci/merge-coverage-changes && nyc report --temp-dir=.coverage/all --reporter=html --report-dir=.coverage_html",
"cov:unit:html": "node ci/run-test-coverage-analysis --context=unit && node ci/merge-coverage-changes && nyc report --temp-dir=.coverage/all --reporter=html --report-dir=.coverage_html",
"cov:unit:json": "node ci/run-test-coverage-analysis --context=unit && node ci/merge-coverage-changes && nyc report --temp-dir=.coverage/all --reporter=json-summary --report-dir=.coverage_json && node ci/format-coverage-summary.js",
"cov:changes:json": "npm run cov:clean && node ci/run-coverage-on-branch-changes.js && node ci/merge-coverage-changes --context=changes && node ci/run-report-on-branch-changes",
"cov:clean": "node ci/clean-coverage",
"cov:changes:2:md": "node ci/format-branch-coverage-changes.js",
"version": "changeset version",
"release:npm": "changeset publish",
"release:github": "node gh-release.js",
"changeset:add": "changeset",
"demo": "node demo/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/koop.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/koopjs/koop/issues"
},
"homepage": "https://github.com/koopjs/koop#readme",
"workspaces": [
"packages/winnow",
"packages/featureserver",
"packages/output-geoservices",
"packages/logger",
"packages/cache-memory",
"packages/core"
],
"devDependencies": {
"@changesets/changelog-git": "^0.2.0",
"@changesets/cli": "^2.27.10",
"@commitlint/config-conventional": "^19.6.0",
"@koopjs/auth-direct-file": "^3.0.0",
"@koopjs/provider-file-geojson": "^2.2.0",
"await-spawn": "^4.0.2",
"byline": "^5.0.0",
"commitizen": "^4.3.1",
"commitlint": "^19.6.0",
"coverage-badges-cli": "^2.1.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"cz-git": "^1.11.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-coverage-badges-ng": "^1.0.1",
"json2md": "^2.0.1",
"lerna": "^8.1.9",
"lerna-changelog": "^2.2.0",
"lint-staged": "^15.2.10",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"protobufjs": "^7.4.0",
"shelljs": "^0.8.5",
"simple-git": "^3.27.0",
"snyk": "^1.1294.1",
"supertest": "^7.0.0",
"yargs": "^17.7.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"czConfig": ".commitlintrc.js"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"!*.js": []
},
"volta": {
"node": "20.11.1"
}
}