-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.5 KB
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
{
"name": "strapi-plugin-image-formats",
"version": "0.3.0",
"description": "Process image uploads.",
"strapi": {
"name": "Image Formats",
"icon": "crop",
"description": "Process image uploads."
},
"scripts": {
"analyze:clean": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/rimraf stats.json",
"preanalyze": "npm run analyze:clean",
"analyze": "node ./node_modules/strapi-helper-plugin/lib/internals/scripts/analyze.js",
"prebuild": "npm run build:clean",
"build:dev": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/cross-env NODE_ENV=development node ./node_modules/strapi-helper-plugin/node_modules/.bin/webpack --config node_modules/strapi-helper-plugin/lib/internals/webpack/webpack.prod.babel.js --color -p --progress",
"build": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/cross-env NODE_ENV=production node node_modules/strapi-helper-plugin/node_modules/.bin/webpack --config node_modules/strapi-helper-plugin/lib/internals/webpack/webpack.prod.babel.js --color -p --progress",
"build:clean": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/rimraf admin/build",
"start": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/cross-env NODE_ENV=development node ./node_modules/strapi-helper-plugin/lib/server",
"generate": "node ./node_modules/strapi-helper-plugin/node_modules/plop --plopfile ./node_modules/strapi-helper-plugin/lib/internals/generators/index.js",
"lint": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/eslint --ignore-path .gitignore --ignore-pattern '/admin/build/' --config ./node_modules/strapi-helper-plugin/lib/internals/eslint/.eslintrc.json admin",
"prettier": "node ./node_modules/strapi-helper-plugin/node_modules/.bin/prettier --single-quote --trailing-comma es5 --write \"{admin,__{tests,mocks}__}/**/*.js\"",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"jest": "^24.7.1",
"jimp": "^0.6.4",
"joi": "^14.3.1",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"strapi-helper-plugin": "3.0.0-alpha.26"
},
"author": {
"name": "Joseph Beuckman",
"email": "joe@beigerecords.com",
"url": "https://github.com/jbeuckm"
},
"maintainers": [
{
"name": "Joseph Beuckman",
"email": "joe@beigerecords.com",
"url": "https://github.com/jbeuckm"
}
],
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.0.0"
},
"license": "MIT"
}