-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "@shelf/froala-image-upload-s3-signature",
"version": "1.0.1",
"description": "Get S3 signature for Froala editor with configurable expiration time",
"keywords": [
"wysiwyg-editor",
"s3-signature",
"froala"
],
"repository": "shelfio/froala-image-upload-s3-signature",
"license": "MIT",
"author": {
"name": "Vitalii Sikora",
"email": "[email protected]",
"url": "shelf.io"
},
"main": "lib",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && yarn build:types && yarn build:code",
"build:code": "babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts' && find ./lib -name '*.test.d.ts' -delete",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "yarn test --coverage",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint . --ext .js,.ts,.json",
"prepack": "yarn build",
"test": "TZ=UTC jest src",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write"
],
"*.{js,ts,json}": [
"eslint --fix"
]
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"devDependencies": {
"@babel/cli": "7.22.9",
"@babel/core": "7.22.9",
"@shelf/babel-config": "2.0.2",
"@shelf/eslint-config": "2.29.1",
"@types/node": "14",
"eslint": "8.45.0",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}