-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.92 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
{
"name": "dice-roller",
"version": "1.1.4",
"description": "A block for rolling polyhedral dice.",
"main": "src/index.js",
"scripts": {
"start": "wp-scripts start",
"dev": "wp-scripts start",
"watch": "wp-scripts start",
"build": "wp-scripts build",
"lint:css": "wp-scripts lint-style && ./node_modules/.bin/sass-lint --config ./node_modules/@webdevstudios/css-coding-standards/.sass-lint.yml '**/*.scss' --verbose",
"lint:js": "wp-scripts lint-js",
"lint:php": "./vendor/bin/phpcs --standard=./.phpcs.xml.dist --extensions=php ./ --ignore='./build/*,./node_modules/*,./vendor/*'",
"packages-update": "wp-scripts packages-update",
"postinstall": "wp-scripts build && composer install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ravewebdev/dice-roller"
},
"keywords": [
"Gutenberg"
],
"author": "WebDevStudios",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ravewebdev/dice-roller/issues"
},
"homepage": "https://github.com/ravewebdev/dice-roller#readme",
"dependencies": {},
"devDependencies": {
"@webdevstudios/css-coding-standards": "^1.0.1",
"@webdevstudios/js-coding-standards": "^1.1.1",
"@wordpress/scripts": "^12.1.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^4.0.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"ignore-emit-webpack-plugin": "^2.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"postcss-safe-parser": "^4.0.2",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.0"
},
"eslintConfig": {
"extends": [
"plugin:@wordpress/eslint-plugin/esnext",
"plugin:@wordpress/eslint-plugin/react",
"@webdevstudios/js-coding-standards"
]
},
"sasslintConfig": "./node_modules/@webdevstudios/css-coding-standards/.sass-lint.yml",
"stylelint": {
"extends": "stylelint-config-wordpress",
"ignoreFiles": [
"**/*.scss",
"build/**/*.css"
]
}
}