-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.11 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ara-filesystem",
"version": "0.27.3",
"description": "The Ara FileSystem, isolated and secure file systems backed by Ara identities.",
"main": "index.js",
"bin": {
"afs": "./bin/afs",
"afs-create": "./bin/afs-create",
"afs-add": "./bin/afs-add",
"afs-remove": "./bin/afs-remove",
"afs-commit": "./bin/afs-commit",
"afs-history": "./bin/afs-history",
"afs-price": "./bin/afs-price",
"afs-destroy": "./bin/afs-destroy",
"afs-unarchive": "./bin/afs-unarchive",
"afs-metadata": "./bin/afs-metadata",
"afs-ownership": "./bin/afs-ownership",
"afs-deploy": "./bin/afs-deploy"
},
"scripts": {
"test": "bash ./scripts/test",
"lint": "eslint . && eslint bin/*",
"lint-fix": "eslint . --fix && eslint bin/* --fix",
"start": "node .",
"shipright": "./scripts/shipright",
"changelog": "conventional-changelog --same-file --preset angular --release-count 0 --infile CHANGELOG.md",
"version": "npm run changelog && git add CHANGELOG.md && npm run shipright && git add docs/CLI-README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AraBlocks/ara-filesystem.git"
},
"keywords": [
"ara",
"filesystem",
"decentralized",
"distributed"
],
"author": "Charles Kelly <charles@arablocks.io>",
"contributors": {
"name": "Eric Jiang",
"email": "eric@arablocks.io"
},
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/AraBlocks/ara-filesystem/issues"
},
"homepage": "https://github.com/AraBlocks/ara-filesystem#readme",
"dependencies": {
"ansi-diff-stream": "^1.2.0",
"ara-console": "0.2.x",
"ara-contracts": "^0.25.4",
"ara-crypto": "0.8.x",
"ara-identity": "^0.62.2",
"ara-network": "1.x.x",
"ara-runtime-configuration": "1.x.x",
"ara-secret-storage": "0.1.x",
"ara-util": "^1.4.2",
"cfsnet": "0.19.x",
"cli-width": "^2.2.0",
"cross-spawn": "^6.0.5",
"debug": "^3.1.0",
"did-document": "0.6.x",
"extend": "^3.0.2",
"generate-password": "^1.4.0",
"has-did-method": "^0.1.0",
"ignore": "^5.0.4",
"inquirer": "^6.0.0",
"is-buffer": "^2.0.3",
"is-directory": "^0.3.1",
"is-file": "^1.0.0",
"is-symlink": "^0.1.1",
"ld-cryptosuite-registry": "^0.3.0",
"mirror-folder": "^3.0.0",
"mkdirp": "^0.5.1",
"ms": "^2.1.1",
"openzeppelin-solidity": "1.10.0",
"pify": "^3.0.0",
"pretty-bytes": "^4.0.2",
"prettyjson": "^1.2.1",
"progress": "^2.0.0",
"progress-stream": "^2.0.0",
"random-access-file": "^2.0.1",
"random-access-memory": "^3.0.0",
"random-access-storage": "^1.3.0",
"rimraf": "^2.6.2",
"solc": "^0.4.24",
"table": "^4.0.3",
"toiletdb": "^1.4.1",
"unixify": "^1.0.0",
"web3": "^1.0.0-beta.36",
"which": "^1.3.1",
"yargs": "^11.1.0"
},
"devDependencies": {
"ava": "^1.0.0-beta.7",
"conventional-changelog-cli": "^2.0.5",
"eslint": "^4.19.1",
"eslint-config-ara": "github:arablocks/eslint-config-ara#semver:2.1.x",
"eslint-plugin-import": "^2.13.0"
},
"directories": {
"lib": "lib",
"test": "test"
}
}