-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wp-giphy-block",
"version": "0.1.0",
"description": "A custom Gutenberg block for searching and displaying GIFs from Giphy.com in Gutenberg.",
"author": "asharirfan",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/asharirfan/wp-giphy-block/issues"
},
"homepage": "https://github.com/asharirfan/wp-giphy-block#readme",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/asharirfan/wp-giphy-block"
},
"keywords": [
"Gutenberg"
],
"dependencies": {
"axios": "^0.20.0"
},
"devDependencies": {
"@webdevstudios/css-coding-standards": "^1.0.1",
"@webdevstudios/js-coding-standards": "^1.1.1",
"@wordpress/scripts": "^12.1.1",
"ignore-emit-webpack-plugin": "^2.0.2"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/esnext",
"plugin:@wordpress/eslint-plugin/react",
"@webdevstudios/js-coding-standards"
],
"ignorePatterns": [
"build/**",
"vendor/**"
]
},
"prettier": {
"extends": "@wordpress/prettier-config"
},
"stylelint": {
"extends": "stylelint-config-wordpress/scss",
"ignoreFiles": [
"build/**",
"vendor/**"
],
"rules": {
"block-no-empty": null,
"font-family-no-duplicate-names": null,
"font-family-no-missing-generic-family-keyword": null,
"max-line-length": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null
}
},
"scripts": {
"start": "wp-scripts start",
"dev": "wp-scripts start",
"watch": "wp-scripts start",
"build": "wp-scripts build",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run lint",
"packages-update": "wp-scripts packages-update",
"postinstall": "wp-scripts build && composer install"
}
}