-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "gen-srcset",
"version": "0.4.1",
"main": "src/index.js",
"bin": {
"gen-srcset": "./index.js"
},
"repository": "https://github.com/iakindev/gen-srcset",
"author": "İlyas Akın <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --exec babel-node --extensions '.js,.ts' src/index.js",
"build": "yarn run babel --extensions '.js,.ts' --ignore '**/__tests__' src -d dist --copy-files",
"postbuild": "cp package.json dist && cp README.md dist",
"pretest": "yarn run deliquus",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"commander": "^8.2.0",
"sharp": "^0.29.1",
"threads": "^1.7.0"
},
"devDependencies": {
"@atolye15/eslint-config": "^1.2.0",
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@types/jest": "^27.0.2",
"deliquus": "^0.3.8",
"eslint": "^7.32.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"keywords": [
"image",
"resize",
"picture",
"source",
"breakpoints",
"srcset",
"width",
"avif",
"generate",
"responsive",
"responsive image",
"generator",
"cli"
]
}