-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 878 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
{
"name": "keccak-js",
"version": "2.2.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node ./test/sha3.js && node ./test/cshake.js && node ./test/kmac.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaosBreaking/keccak-js.git"
},
"keywords": [
"keccak",
"sha-3",
"shake",
"kmac"
],
"author": "Keii Nimo",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaosBreaking/keccak-js/issues"
},
"homepage": "https://github.com/chaosBreaking/keccak-js#readme",
"dependencies": {
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}