-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "blake3-js",
"version": "0.0.5",
"main": "dist/main.js",
"entry": "./src/index.js",
"license": "Apache-2.0",
"author": "Romé van Grinsven",
"repository": {
"type": "git",
"url": "git+https://github.com/rvgrinsven/blake3-js.git"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"@babel/core": "^7.8.0",
"@babel/plugin-transform-modules-commonjs": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"esm": "^3.2.25",
"mocha": "^7.0.0",
"webpack": "latest",
"webpack-cli": "latest"
},
"scripts": {
"test": "mocha --require esm './test'",
"build": "webpack"
},
"type": "module",
"description": "Pure javascript implementation of BLAKE3",
"bugs": {
"url": "https://github.com/rvgrinsven/blake3-js/issues"
},
"homepage": "https://github.com/rvgrinsven/blake3-js#readme",
"directories": {
"test": "test"
},
"keywords": [
"blake3",
"blake3-js",
"blake3js"
]
}