-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.73 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
80
{
"version": "1.2.2",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "npx tsdx watch --onSuccess \"node ./dist/index.js\"",
"customtest": "npx nodemon test/test.js",
"build": "npx tsdx build --target node",
"lint": "npx tsdx lint",
"prepare": "npx tsdx build --target node",
"np:publish": "git push origin master && np --no-tests --no-2fa",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maielo/do-spaces.git"
},
"bugs": {
"url": "https://github.com/maielo/do-spaces/issues"
},
"homepage": "https://github.com/maielo/do-spaces#readme",
"name": "do-spaces",
"author": "Maielo",
"keywords": [
"digital-ocean",
"digital-ocean-spaces",
"ts",
"typescript",
"spaces",
"promises",
"async",
"node"
],
"module": "dist/do-spaces.esm.js",
"size-limit": [
{
"path": "dist/do-spaces.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/do-spaces.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@aws-sdk/types": "^3.410.0",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/mime-types": "^2.1.1",
"husky": "^8.0.3",
"i": "^0.3.7",
"nodemon": "^3.0.1",
"size-limit": "^9.0.0",
"tsdx": "^0.13.3",
"tslib": "^2.6.2"
},
"dependencies": {
"aws-sdk": "^2.1455.0",
"mime-types": "^2.1.35"
}
}