-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"author": "GenUI LLC",
"bin": {
"s3p": "bin/s3p"
},
"bugs": "https:/github.com/generalui/s3p/issues",
"dependencies": {
"@art-suite/cli": "2.2",
"@aws-sdk/client-s3": "^3.436.0",
"@aws-sdk/lib-storage": "^3.635.0",
"art-class-system": "^1.11.13",
"art-communication-status": "^1.6.0",
"art-standard-lib": "^1.73.3",
"caffeine-script-runtime": "^1.14.0",
"glob": "^11.0.0",
"neptune-namespaces-runtime": "^3.2.9",
"shell-escape": "^0.2.0"
},
"description": "S3P is a CLI and library that is 5x to 50x faster than aws-cli for bulk S3 operations including: summarize, compare, copy and sync.",
"devDependencies": {
"@art-suite/standard-package-builder": "^1.2.6",
"art-build-configurator": "^1.29.3",
"art-testbench": "^3.2.2",
"caffeine-script": "^0.75.1",
"jest": "^29.3.1",
"mock-fs": "^5.0.0",
"neptune-namespaces": "^4.2.9"
},
"homepage": "https://github.com/generalui/s3p",
"jest": {
"collectCoverageFrom": [
"build/**/*.js",
"!build/test/**/*.js"
],
"coveragePathIgnorePatterns": [
"/index.js$",
"/namespace.js$"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test"
],
"verbose": true
},
"license": "ISC",
"name": "s3p",
"repository": {
"type": "git",
"url": "https://github.com/generalui/s3p.git"
},
"scripts": {
"build": "rsync -av --exclude='*.caf' ./source/ ./build/\ncaf -m -c source -o build\nnpm run nn",
"build-clean": "# BUILD CLEAN START\n# - building into: build-temp\n#\nrm -rf ./__build-old__\nrsync -av --exclude='*.caf' ./source/ ./build-temp/\ncaf -m -c source -o build-temp\nnpm run nn\n\nnn build-temp/*\n\n# BUILD CLEAN FINIALIZING\n# - replace old build in: build\n# - with new build from: build-temp\n#\nmv build __build-old__\nmv build-temp build\nrm -rf ./__build-old__",
"build-watch": "nodemon -e js,ts,jsx,tsx,caf,coffee,json -i \"build/**\" -x npm run build",
"clean": "rm -rf build/*",
"nn": "nn build/* ",
"test": "jest",
"test-watch": "jest --watch"
},
"version": "3.6.1",
"watch": {
"build": {
"extensions": [
"caf"
],
"patterns": [
"source"
],
"quiet": false
}
}
}