-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.16 KB
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
{
"name": "fnvjs",
"version": "1.0.1",
"description": "A FNV hashing library for JavaScript.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && tsc -p tsconfig-cjs.json",
"test": "jest",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namralkeeg/fnvjs.git"
},
"keywords": [
"fnv1a",
"fnv-1a",
"fnv1",
"fnv-1",
"fnv",
"algorithm",
"hash",
"hashing",
"string",
"function",
"fowler–noll–vo",
"fowler",
"noll",
"vo"
],
"author": "Larry Lopez <namralkeeg@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/namralkeeg/fnvjs/issues"
},
"homepage": "https://github.com/namralkeeg/fnvjs#readme",
"engines": {
"node": ">=10.4"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {}
}