-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
{
"name": "ara-crypto",
"version": "0.9.4",
"description": "Cryptographic functions used in Ara modules",
"main": "index.js",
"scripts": {
"test": "ava test/*",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"coverage": "npm run nyc",
"nyc": "nyc -x bench -x test/helpers -a ava test",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AraBlocks/ara-crypto.git"
},
"keywords": [
"ara",
"crypto"
],
"author": "Joseph Werle <werle@littlstar.com>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/AraBlocks/ara-crypto/issues"
},
"homepage": "https://github.com/AraBlocks/ara-crypto#readme",
"dependencies": {
"base-x": "^3.0.4",
"buffer-alloc-unsafe": "^1.0.0",
"increment-buffer": "^1.0.1",
"is-buffer": "^2.0.2",
"is-zero-buffer": "^1.0.1",
"sodium-browserify": "1.3.0",
"sodium-javascript": "^0.7.3",
"sodium-universal": "^3.0.4",
"split-buffer": "^1.0.0",
"through2": "^4.0.2",
"tweetnacl-auth": "^1.0.1",
"uint64be": "^3.0.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"ansi-diff": "^1.1.1",
"ava": "^3.15.0",
"blue-tape": "^1.0.0",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.24.0",
"eslint-config-ara": "github:arablocks/eslint-config-ara#semver:3.0.x",
"eslint-plugin-import": "^2.22.1",
"nyc": "^15.1.0",
"pretty-bytes": "^5.1.0",
"speedometer": "^1.1.0"
}
}