-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "ara-secret-storage",
"version": "0.2.1",
"description": "ARA RFC 0001 Secret Storage implementation",
"main": "index.js",
"bin": {
"ass": "./bin/ass"
},
"directories": {
"bin": "bin",
"test": "test"
},
"scripts": {
"test": "ava test/*",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"pkg": "sh ./scripts/package.sh",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md"
},
"keywords": [
"ara",
"secret",
"storage"
],
"author": "Joseph Werle <[email protected]>",
"license": "LGPL-3.0",
"dependencies": {
"ara-console": "^0.3.0",
"ara-crypto": "^0.9.4",
"collect-stream": "^1.2.1",
"debug": "^4.3.1",
"is-buffer": "^2.0.3",
"table": "^6.3.2",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
},
"devDependencies": {
"ava": "^3.15.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",
"pkg": "^4.3.4"
}
}