forked from djshadowxm82/recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "ferdi-recipes",
"version": "1.0.0",
"description": "Recipes for the Ferdi Desktop App",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"prepare": "husky install",
"package": "node scripts/package.js",
"create": "node scripts/create.js",
"lint": "eslint --quiet --fix recipes",
"reformat-files": "./node_modules/.bin/prettier --ignore-path .eslintignore --write --require-pragma \"**/*.{js,json,scss}\"",
"minify-images": "./scripts/minify-images.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getferdi/recipes.git"
},
"keywords": [
"ferdi",
"recipes"
],
"author": "The Ferdi Team <hello@getferdi.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/getferdi/recipes/issues"
},
"homepage": "https://github.com/getferdi/recipes#readme",
"dependencies": {
"fs-extra": "^10.0.0",
"image-size": "^1.0.0",
"open": "^8.2.0",
"targz": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^5.10.0",
"husky": "^6.0.0",
"imagemin-cli": "^6.0.0",
"prettier": "^2.3.0",
"simple-git": "^2.39.0"
}
}