-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "@datagraphics/delivery",
"version": "0.6.0",
"description": "Push and pull assets to and from S3 the Data Graphics way.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "typebundle src/index.ts --output dist --target 10 --compress",
"build-docs": "documentation readme src/index.ts --parse-extension ts --section API --markdown-toc --config documentation.yml",
"prepublishOnly": "npm run build && npm run build-docs",
"release": "np --no-yarn --no-tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datadesk/delivery.git"
},
"keywords": [
"s3",
"aws",
"deployment"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/datadesk/delivery/issues"
},
"homepage": "https://github.com/datadesk/delivery#readme",
"dependencies": {
"aws-sdk": "^2.700.0",
"fast-glob": "^3.2.4",
"mime": "^3.0.0"
},
"devDependencies": {
"@datagraphics/prettier-config": "^2.0.0",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.18",
"documentation": "^14.0.1",
"np": "^7.0.0",
"prettier": "^2.0.5",
"typebundle": "^0.12.0"
},
"prettier": "@datagraphics/prettier-config"
}