-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "bucketclient",
"engines": {
"node": ">=16"
},
"version": "8.1.10",
"description": "Bucket Client",
"main": "index.js",
"files": [
"CONTRIBUTING.md",
"config.json",
"index.d.ts",
"lib/*",
"licenses/*",
"yarn.lock"
],
"scripts": {
"ft_test": "mocha tests/functional",
"lint": "eslint $(git ls-files '*.js')",
"test": "mocha tests/unit"
},
"bin": {
"shell": "bin/shell.js"
},
"repository": "scality/bucketclient",
"keywords": [
"dbd",
"raft"
],
"author": "Giorgio Regni",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/bucketclient/issues"
},
"homepage": "https://github.com/scality/bucketclient#readme",
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.0.0",
"eslint-config-scality": "scality/Guidelines#ec33dfb",
"eslint-plugin-react": "4.2.3",
"mocha": ""
},
"dependencies": {
"arsenal": "git+https://github.com/scality/Arsenal#8.1.87",
"httpagent": "git+https://github.com/scality/httpagent#1.0.5",
"werelogs": "scality/werelogs#8.1.2"
}
}