-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 987 Bytes
/
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
{
"name": "beamsplitter",
"version": "2.1.3",
"description": "A (possibly universal) family of hash functions over a random 10x64 s-box.",
"main": "js/hash.js",
"node": "js/index.js",
"module": "js/dist/main.js",
"unpkg": "js/dist/main.js",
"browser": "js/dist/main.js",
"pre-commit": [
"build"
],
"scripts": {
"test": "node -r esm js/test.js",
"build": "npx webpack ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/cris691/beamsplitter.git"
},
"keywords": [
"hash",
"universal",
"smhasher"
],
"author": "@dosy",
"license": "MIT",
"bugs": {
"url": "https://github.com/cris691/beamsplitter/issues"
},
"homepage": "https://github.com/cris691/beamsplitter#readme",
"dependencies": {
"esm": "^3.2.25"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"parcel": "^2.9.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
}
}