@checkdigit/hash 3.0.1-PR.24-fb4c → 3.0.1

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 +72 -1
package/package.json CHANGED
@@ -1 +1,72 @@
1
- {"name":"@checkdigit/hash","version":"3.0.1-PR.24-fb4c","description":"Hash is a small function for Check Digit services to create a uuid derived from a hash generated from a given value.","type":"module","exports":{".":{"types":"./dist-types/index.d.ts","import":"./dist-mjs/index.mjs","default":"./dist-mjs/index.mjs"}},"files":["src","dist-types","dist-mjs","!src/**/*.test.ts","!src/**/*.spec.ts","!dist-types/**/*.test.d.ts","!dist-types/**/*.spec.d.ts","!dist-mjs/**/*.test.mjs","!dist-mjs/**/*.spec.mjs","SECURITY.md"],"sideEffects":false,"prettier":"@checkdigit/prettier-config","engines":{"node":">=20.11"},"repository":{"type":"git","url":"git+https://github.com/checkdigit/hash.git"},"author":"Check Digit, LLC","license":"MIT","bugs":{"url":"https://github.com/checkdigit/hash/issues"},"homepage":"https://github.com/checkdigit/hash#readme","devDependencies":{"@checkdigit/eslint-config":"^9.2.0","@checkdigit/jest-config":"^6.0.0","@checkdigit/prettier-config":"^5.3.0","@checkdigit/typescript-config":"^7.0.1","@types/uuid":"^9.0.8","rimraf":"^5.0.5","uuid":"^9.0.1"},"eslintConfig":{"extends":["@checkdigit/eslint-config"]},"jest":{"preset":"@checkdigit/jest-config"},"scripts":{"prepublishOnly":"npm run build:dist-types && npm run build:dist-mjs","build:dist-types":"rimraf dist-types && npx builder --type=types --outDir=dist-types","build:dist-mjs":"rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs","prettier":"prettier --ignore-path .gitignore --list-different .","prettier:fix":"prettier --ignore-path .gitignore --write .","lint":"eslint --max-warnings 0 --ignore-path .gitignore .","lint:fix":"eslint --ignore-path .gitignore . --fix","test":"npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style","ci:compile":"tsc --noEmit","ci:test":"NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false","ci:coverage":"NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true","ci:lint":"npm run lint","ci:style":"npm run prettier"}}
1
+ {
2
+ "name": "@checkdigit/hash",
3
+ "version": "3.0.1",
4
+ "description": "Hash is a small function for Check Digit services to create a uuid derived from a hash generated from a given value.",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist-types/index.d.ts",
9
+ "import": "./dist-mjs/index.mjs",
10
+ "default": "./dist-mjs/index.mjs"
11
+ }
12
+ },
13
+ "files": [
14
+ "src",
15
+ "dist-types",
16
+ "dist-mjs",
17
+ "!src/**/*.test.ts",
18
+ "!src/**/*.spec.ts",
19
+ "!dist-types/**/*.test.d.ts",
20
+ "!dist-types/**/*.spec.d.ts",
21
+ "!dist-mjs/**/*.test.mjs",
22
+ "!dist-mjs/**/*.spec.mjs",
23
+ "SECURITY.md"
24
+ ],
25
+ "sideEffects": false,
26
+ "prettier": "@checkdigit/prettier-config",
27
+ "engines": {
28
+ "node": ">=20.11"
29
+ },
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "git+https://github.com/checkdigit/hash.git"
33
+ },
34
+ "author": "Check Digit, LLC",
35
+ "license": "MIT",
36
+ "bugs": {
37
+ "url": "https://github.com/checkdigit/hash/issues"
38
+ },
39
+ "homepage": "https://github.com/checkdigit/hash#readme",
40
+ "devDependencies": {
41
+ "@checkdigit/eslint-config": "^9.2.0",
42
+ "@checkdigit/jest-config": "^6.0.0",
43
+ "@checkdigit/prettier-config": "^5.3.0",
44
+ "@checkdigit/typescript-config": "^7.0.1",
45
+ "@types/uuid": "^9.0.8",
46
+ "rimraf": "^5.0.5",
47
+ "uuid": "^9.0.1"
48
+ },
49
+ "eslintConfig": {
50
+ "extends": [
51
+ "@checkdigit/eslint-config"
52
+ ]
53
+ },
54
+ "jest": {
55
+ "preset": "@checkdigit/jest-config"
56
+ },
57
+ "scripts": {
58
+ "prepublishOnly": "npm run build:dist-types && npm run build:dist-mjs",
59
+ "build:dist-types": "rimraf dist-types && npx builder --type=types --outDir=dist-types",
60
+ "build:dist-mjs": "rimraf dist-mjs && npx builder --type=module --sourceMap --outDir=dist-mjs && node dist-mjs/index.mjs",
61
+ "prettier": "prettier --ignore-path .gitignore --list-different .",
62
+ "prettier:fix": "prettier --ignore-path .gitignore --write .",
63
+ "lint": "eslint --max-warnings 0 --ignore-path .gitignore .",
64
+ "lint:fix": "eslint --ignore-path .gitignore . --fix",
65
+ "test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style",
66
+ "ci:compile": "tsc --noEmit",
67
+ "ci:test": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=false",
68
+ "ci:coverage": "NODE_OPTIONS=\"--disable-warning ExperimentalWarning --experimental-vm-modules\" jest --coverage=true",
69
+ "ci:lint": "npm run lint",
70
+ "ci:style": "npm run prettier"
71
+ }
72
+ }