-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 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
{
"name": "@mts-pjsc/image-optimize",
"version": "1.2.2",
"description": "React component for image optimizer",
"main": "dist/index.js",
"module": "dist/index.js",
"esnext": "dist/index.js",
"type": "module",
"scripts": {
"eslint": "eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js ./src/",
"test": "echo \"Error: no test specified. For test need deployed microservice part\" && exit 1",
"test:module": "node ./dist/index.js",
"build": "rm -rf dist/ && tsc --project tsconfig.json && npm run test:module",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MobileTeleSystems/image-optimize-react.git"
},
"keywords": [
"image",
"optimization"
],
"lint-staged": {
"./src/**/*.(ts|tsx|js|jsx)": [
"eslint --fix -c .eslintrc.cjs --ext .tsx,.ts,.jsx,.js"
]
},
"author": "MobileTeleSystems",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MobileTeleSystems/image-optimize-react/issues"
},
"homepage": "https://github.com/MobileTeleSystems/image-optimize-react#readme",
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@labeg/code-style": "^2.0.51",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"typescript": "^4.9.3"
}
}