-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 814 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 814 Bytes
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
{
"name": "crypto-magic",
"description": "crypto related functions",
"license": "MIT",
"version": "0.1.0",
"keywords": [],
"author": "Andi Dittrich",
"homepage": "https://github.com/npkgz/crypto-magic",
"bugs": "https://github.com/npkgz/crypto-magic/issues",
"repository": "npkgz/crypto-magic",
"files": [
"crypto-magic.js",
"lib/"
],
"main": "./crypto-magic.js",
"bin": {},
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint .js lib/**.js",
"test": "mocha test/**/*.test.js"
},
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.19.0",
"eslint-config-aenondynamics": "^0.2.0",
"mocha": "^8.2.1",
"uuid": "^8.3.2"
}
}