@sprucelabs/spruce-location-utils 2.0.5 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +7 -102
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sprucelabs/spruce-location-utils",
3
- "description": "Locations",
4
- "version": "2.0.5",
3
+ "description": "Location Utilities",
4
+ "version": "2.0.9",
5
5
  "skill": {
6
6
  "namespace": "locations"
7
7
  },
@@ -25,110 +25,15 @@
25
25
  ],
26
26
  "keywords": [],
27
27
  "scripts": {
28
- "boot": "node build/index",
29
- "boot.local": "node -r ts-node/register -r tsconfig-paths/register ./src/index",
30
- "build.ci": "yarn build.tsc && yarn build.resolve-paths && yarn lint",
31
- "build.copy-files": "mkdir -p build && rsync -avzq --exclude='*.ts' ./src/ ./build/",
32
- "build.dev": "yarn build.tsc --sourceMap ; yarn resolve-paths.lint",
33
- "build.dist": "yarn build.tsc && tsc --project tsconfig.dist.json && yarn build.resolve-paths && yarn build.esm-postbuild",
34
- "build.esm-postbuild": "esm-postbuild --target build/esm --patterns '**/*.js'",
35
- "build.resolve-paths": "resolve-path-aliases --target build --patterns '**/*.js,**/*.d.ts'",
36
- "build.tsc": "yarn build.copy-files && tsc",
37
- "clean": "yarn clean.build",
38
- "clean.all": "yarn clean.dependencies && yarn clean.build",
39
- "clean.build": "rm -rf build/",
40
- "clean.dependencies": "rm -rf node_modules/ package-lock.json yarn.lock",
41
- "fix.lint": "eslint --fix --cache '**/*.ts'",
42
- "health": "yarn boot --health",
43
- "health.local": "yarn boot.local --health",
44
- "heroku-postbuild": "yarn build.dev",
45
- "lint": "eslint --cache '**/*.ts'",
46
- "lint.tsc": "tsc -p . --noEmit",
47
- "post.watch.build": "yarn build.copy-files && yarn build.resolve-paths",
48
- "rebuild": "yarn clean.all && yarn && yarn build.dev",
49
- "release": "semantic-release",
50
- "resolve-paths.lint": "yarn build.resolve-paths ; yarn lint",
51
- "test": "jest",
52
- "update.dependencies": "yarn clean.dependencies && yarn",
53
- "watch.build.dev": "tsc-watch --sourceMap --onCompilationComplete 'yarn post.watch.build'",
54
- "watch.lint": "concurrently 'yarn lint' \"chokidar 'src/**/*' -c 'yarn lint.tsc'\"",
55
- "watch.rebuild": "yarn clean.all && yarn && yarn watch.build.dev",
56
- "watch.tsc": "tsc -w"
28
+ "release": "npm publish"
57
29
  },
58
30
  "dependencies": {
59
- "@sprucelabs/error": "^5.0.310",
60
- "@sprucelabs/heartwood-view-controllers": "^51.5.15",
61
- "@sprucelabs/mercury-client": "^17.2.18",
62
- "@sprucelabs/mercury-core-events": "^1.6.164",
63
- "@sprucelabs/mercury-types": "^26.1.954",
64
- "@sprucelabs/schema": "^25.4.50",
65
- "@sprucelabs/spruce-core-schemas": "^22.6.221",
66
- "@sprucelabs/spruce-event-plugin": "^16.0.0",
67
- "@sprucelabs/spruce-event-utils": "^17.1.228",
68
- "@sprucelabs/spruce-skill-booter": "^16.0.0",
69
- "@sprucelabs/spruce-skill-utils": "^22.1.31",
70
- "@sprucelabs/spruce-view-plugin": "^7.0.272",
71
- "dotenv": "^10.0.0",
72
- "globby": "^11.0.4"
73
- },
74
- "devDependencies": {
75
- "@sprucelabs/esm-postbuild": "^1.0.294",
76
- "@sprucelabs/jest-json-reporter": "^6.0.260",
77
- "@sprucelabs/jest-sheets-reporter": "^1.2.265",
78
- "@sprucelabs/resolve-path-aliases": "^1.0.234",
79
- "@sprucelabs/semantic-release": "^4.0.8",
80
- "@sprucelabs/spruce-test-fixtures": "^16.0.0",
81
- "@sprucelabs/test": "^7.7.243",
82
- "@sprucelabs/test-utils": "^3.0.293",
83
- "@types/node": "^16.11.11",
84
- "chokidar-cli": "^3.0.0",
85
- "concurrently": "^6.4.0",
86
- "eslint": "^8.3.0",
87
- "eslint-config-spruce": "^10.10.16",
88
- "jest": "^27.4.3",
89
- "jest-circus": "^27.4.2",
90
- "prettier": "^2.5.0",
91
- "ts-node": "^10.4.0",
92
- "tsc-watch": "^4.5.0",
93
- "tsconfig-paths": "^3.12.0",
94
- "typescript": "^4.5.2"
31
+ "@sprucelabs/heartwood-view-controllers": "latest",
32
+ "@sprucelabs/spruce-test-fixtures": "latest",
33
+ "@sprucelabs/test": "latest"
95
34
  },
96
35
  "engines": {
97
36
  "node": "16.x",
98
37
  "yarn": "1.x"
99
- },
100
- "jest": {
101
- "testRunner": "jest-circus/runner",
102
- "maxWorkers": 4,
103
- "testTimeout": 120000,
104
- "testEnvironment": "node",
105
- "testPathIgnorePatterns": [
106
- "<rootDir>/tmp/",
107
- "<rootDir>/src/",
108
- "<rootDir>/node_modules/",
109
- "<rootDir>/build/__tests__/testDirsAndFiles/"
110
- ],
111
- "testMatch": [
112
- "**/__tests__/**/*.test.js?(x)"
113
- ],
114
- "moduleNameMapper": {
115
- "^#spruce/(.*)$": "<rootDir>/build/.spruce/$1"
116
- },
117
- "reporters": [
118
- "default",
119
- [
120
- "@sprucelabs/jest-sheets-reporter",
121
- {
122
- "sheetId": "1DoWM7mYgGDa-PJXptLomrZmbIBZiuxS1YiAsRXU2Gm0",
123
- "worksheetId": 2023312774,
124
- "testMap": {
125
- "doesNotRenderToolBeltWithNoLocations": "L22",
126
- "redirectsToRootAfterAdding": "L23",
127
- "updatingFormUpdatesLocation": "L24",
128
- "redirectsWhenDeletingCurrentLocation": "L25"
129
- }
130
- }
131
- ]
132
- ]
133
38
  }
134
- }
39
+ }