-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 2.13 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-tus-store",
"version": "1.2.5",
"description": "",
"main": "./lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc npm run test:fast",
"build": "npm run clean && babel ./src --out-dir ./lib --copy-files",
"clean": "rimraf ./lib",
"coverage": "nyc report --reporter=lcov && open coverage/lcov-report/index.html",
"lint": "eslint src/ test/",
"pretest": "npm run lint",
"test:fast": "babel-tape-runner test/*.test.js",
"test:watch": "nodemon --exec npm -- run --silent test:fast || true",
"semantic-release": "git push && npm test && semantic-release pre && npm run build && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockai/s3-tus-store.git"
},
"keywords": [
"tus",
"resumable",
"upload",
"abstract-tus-store",
"store",
"s3",
"minio"
],
"author": "Oli Lalonde <[email protected]> (https://syskall.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/blockai/s3-tus-store/issues"
},
"homepage": "https://github.com/blockai/s3-tus-store#readme",
"engines": {
"node": ">=6"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-blockai": "^1.0.0",
"babel-tape-runner": "^2.0.1",
"blue-tape": "^1.0.0",
"coveralls": "^2.11.14",
"cz-conventional-changelog": "^1.2.0",
"duplexify": "^3.4.5",
"eslint-config-blockai": "^1.0.1",
"nodemon": "^1.10.2",
"nyc": "^8.3.2",
"rimraf": "^2.5.4",
"semantic-release": "^4.3.5"
},
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/dist/lib/plugin-noop.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"abstract-tus-store": "^1.5.1",
"aws-sdk": "^2.6.12",
"babel-preset-blockai": "^1.1.0",
"common-streams": "^1.1.0",
"debug": "^2.2.0",
"duplexify": "^3.4.5",
"end-of-stream": "^1.1.0",
"fixed-size-stream-splitter": "^1.1.0",
"meterstream": "^1.0.1",
"to-object-reducer": "^1.0.1"
}
}