forked from karanlyons/murmurHash3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.93 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "endpoint-murmurhash3",
"version": "0.1.12",
"description": "MurmurHash3 in TypeScript",
"keywords": [
"hash",
"hashing",
"incremental",
"murmmurhash3",
"murmurhash",
"progressive",
"64bit",
"128bit",
"anti-collision"
],
"license": "MIT",
"repository": "github:reemus-dev/murmurhash3-ts",
"homepage": "https://github.com/syonfox/murmurHash3",
"bugs": "https://github.com/reemus-dev/murmurHash3/issues",
"author": {
"name": "Tarun Ramesh",
"email": "[email protected]"
},
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"files": [
"dist/**/*"
],
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' | tee ./dist/cjs/package.json > /dev/null",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf ./dist ./coverage",
"coveralls": "jest --config jestconfig.json --silent --coverage --coverageReporters=text-lcov | coveralls",
"cs:add": "changeset add",
"cs:version": "changeset version",
"lint": "eslint src/**",
"postinstall": "[ \"$CI\" = \"1\" ] && exit 0; syncpack format",
"release": "pnpm lint && pnpm build && pnpm test && changeset publish",
"test": "jest --config jest.config.js"
},
"devDependencies": {
"@changesets/cli": "2.26.1",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@tsconfig/recommended": "1.0.2",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@typescript-eslint/eslint-plugin": "5.59.11",
"@typescript-eslint/parser": "5.59.11",
"concurrently": "8.2.0",
"coveralls": "3.1.1",
"eslint": "8.42.0",
"eslint-config-prettier": "8.8.0",
"jest": "29.5.0",
"prettier": "2.8.8",
"syncpack": "10.5.1",
"ts-jest": "29.1.0",
"typescript": "5.1.3"
},
"syncpack": {
"dev": true,
"filter": ".",
"indent": " ",
"overrides": true,
"peer": true,
"prod": true,
"resolutions": true,
"semverGroups": [],
"semverRange": "",
"sortAz": [
"scripts",
"contributors",
"dependencies",
"devDependencies",
"keywords",
"peerDependencies"
],
"sortFirst": [
"name",
"version",
"private",
"description",
"keywords",
"license",
"repository",
"homepage",
"bugs",
"author",
"sideEffects",
"type",
"main",
"module",
"types",
"files",
"exports",
"bin",
"publishConfig",
"scripts",
"dependencies",
"devDependencies",
"prettier",
"xo",
"eslintConfig",
"syncpack"
],
"source": [
"package.json",
"packages/*/package.json",
"tests/*/package.json"
]
}
}