-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 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
{
"name": "responsive-image-generator",
"version": "1.1.1",
"private": "true",
"description": "A plugin that extends Adobe® Photoshop's Generate Image Assets feature",
"homepage": "https://github.com/danmad/responsive-image-generator#readme",
"bugs": "https://github.com/danmad/responsive-image-generator/issues",
"repository": {
"type": "git",
"url": "https://github.com/danmad/responsive-image-generator.git"
},
"license": "MIT",
"author": {
"name": "Daniel Maddison",
"email": "[email protected]",
"url": "https://www.danielmaddison.io"
},
"scripts": {
"bootstrap": "yarn install",
"postbootstrap": "husky install && chmod +x .husky/*",
"prebuild": "rm -rf dist/*",
"build": "tsc --noEmit && babel src/index.ts --out-file dist/responsive-image-generator.min.jsx --extensions \".ts\"",
"postbuild": "uglifyjs dist/responsive-image-generator.min.jsx --compress --output dist/responsive-image-generator.min.jsx",
"unstrap": "rm -rf dist node_modules yarn-error.log"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"sort-package-json": "^2.4.1",
"typescript": "^4.9.5",
"uglify-js": "^3.17.4"
}
}