-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.63 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
{
"name": "@coedl/nocfl-js",
"version": "2.0.0",
"description": "An opinionated S3 storage library informed by ocfl but without versioning",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"files": [
"dist",
"docs"
],
"scripts": {
"develop": "npm run test:watch",
"build": "rm -rf dist/* && npm run unbuild && npm run generate-docs",
"unbuild": "./node_modules/.bin/unbuild",
"test": "./node_modules/.bin/jest --runInBand",
"test:watch": "npm run minio && sleep 5 && ./node_modules/.bin/jest --watch --runInBand && npm run cleanup",
"minio": "docker-compose up -d",
"cleanup": "docker-compose stop && docker-compose rm -f",
"generate-docs": "./node_modules/.bin/jsdoc --configure jsdoc.json --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/CoEDL/nocfl-js"
},
"author": "Marco La Rosa",
"license": "GPLv3",
"dependencies": {
"@aws-sdk/client-s3": "^3.245.0",
"@aws-sdk/lib-storage": "^3.245.0",
"@aws-sdk/s3-request-presigner": "^3.245.0",
"fs-extra": "^11.1.0",
"hasha": "^5.2.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"chance": "^1.1.9",
"clean-jsdoc-theme": "^4.2.2",
"jest": "^29.3.1",
"jsdoc": "^4.0.0",
"unbuild": "^1.0.2"
}
}