-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.61 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
{
"name": "scalable-blob-store",
"version": "5.0.1",
"description": "A file system blob store that is designed to prevent conflicts when used with a distributed file system or storage area network.",
"homepage": "https://github.com/grantcarthew/node-scalable-blob-store",
"author": "Grant Carthew <dev@carthew.net>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/grantcarthew/node-scalable-blob-store.git"
},
"bugs": {
"url": "https://github.com/grantcarthew/node-scalable-blob-store/issues"
},
"keywords": [
"blob-store",
"storage",
"blob",
"store",
"file",
"scalable",
"distributed",
"san",
"local",
"stream",
"buffer"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "tap --reporter=specy ./tests/*.test.js --no-check-coverage",
"watch": "nodemon -x 'tap --reporter=specy ./tests/*.test.js'",
"coverage": "tap --reporter=specy ./tests/*.test.js --coverage-report=html",
"format": "prettier --write .",
"upgrade": "npm run upgrade:rm && npm run upgrade:ncu && npm run upgrade:install && npm run upgrade:auditfix && npm run upgrade:finish",
"upgrade:rm": "rm -Rf node_modules",
"upgrade:ncu": "npm-check-updates --upgrade",
"upgrade:install": "npm install",
"upgrade:auditfix": "npm audit fix --force",
"upgrade:finish": "npm run test"
},
"devDependencies": {
"crispy-stream": "^0.1.2",
"cuid": "^2.1.8",
"del": "^6.0.0",
"node-dir": "^0.1.17",
"tap": "^15.1.5",
"ulid": "^2.3.0",
"uuid": "^8.3.2"
},
"dependencies": {}
}