This repository has been archived by the owner on May 27, 2020. It is now read-only.
forked from scality/cloudserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.95 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
{
"name": "s3",
"version": "7.0.0",
"description": "S3 connector",
"main": "index.js",
"engines": {
"node": "6.9.5"
},
"repository": "scality/S3",
"keywords": [
"s3",
"cloud",
"server"
],
"author": "Giorgio Regni",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/S3/issues"
},
"homepage": "https://github.com/scality/S3#readme",
"dependencies": {
"arsenal": "scality/Arsenal",
"async": "~1.4.2",
"babel-core": "^6.5.2",
"babel-plugin-transform-es2015-destructuring": "^6.5.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.5.2",
"babel-plugin-transform-es2015-parameters": "^6.5.2",
"bucketclient": "scality/bucketclient",
"commander": "^2.9.0",
"ioredis": "2.4.0",
"node-uuid": "^1.4.3",
"npm-run-all": "~4.0.2",
"ready-set-stream": "1.0.7",
"sproxydclient": "scality/sproxydclient",
"utapi": "scality/utapi",
"utf8": "~2.1.1",
"vaultclient": "scality/vaultclient",
"werelogs": "scality/werelogs",
"xml2js": "~0.4.16"
},
"devDependencies": {
"aws-sdk": "2.28.0",
"babel-cli": "^6.2.0",
"babel-eslint": "^6.0.0",
"bluebird": "^3.3.1",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.0.0",
"eslint-config-scality": "scality/Guidelines",
"istanbul": "1.0.0-alpha.2",
"istanbul-api": "1.0.0-alpha.13",
"lolex": "^1.4.0",
"mocha": "^2.3.4",
"mocha-junit-reporter": "1.11.1",
"node-mocks-http": "^1.5.2",
"s3blaster": "scality/s3blaster",
"tv4": "^1.2.7"
},
"scripts": {
"ft_awssdk": "cd tests/functional/aws-node-sdk && npm test",
"ft_node": "cd tests/functional/raw-node && npm test",
"ft_s3cmd": "cd tests/functional/s3cmd && npm test",
"ft_s3curl": "cd tests/functional/s3curl && npm test",
"ft_test": "mocha tester.js --compilers js:babel-core/register",
"init": "node init.js",
"install_ft_deps": "npm install [email protected] [email protected] [email protected] [email protected] [email protected]",
"lint": "eslint $(git ls-files '*.js')",
"lint_md": "mdlint $(git ls-files '*.md')",
"mem_backend": "S3BACKEND=mem node index.js",
"perf": "mocha --compilers js:babel-core/register tests/performance/s3standard.js",
"start": "node init.js && npm-run-all --parallel start_mdserver start_s3server",
"start_mdserver": "node mdserver.js",
"start_s3server": "node index.js",
"start_utapi": "node utapiServer.js",
"utapi_replay": "node utapiReplay.js",
"test": "S3BACKEND=mem mocha --compilers js:babel-core/register --recursive tests/unit",
"multiple_backend_test": "node init.js && S3BACKEND=mem S3DATA=multiple mocha --compilers js:babel-core/register --recursive tests/multipleBackend",
"unit_coverage": "mkdir -p coverage/unit/ && S3BACKEND=mem MOCHA_FILE=$CIRCLE_TEST_REPORTS/unit/unit.xml istanbul cover --dir coverage/unit _mocha -- --compilers js:babel-core/register --reporter mocha-junit-reporter --recursive tests/unit"
}
}