-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.38 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "jazzsequence/question-game",
"description": "A simple game framework with escallating challenge levels",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Chris Reynolds",
"email": "me@chrisreynolds.io"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:jazzsequence/nes.css.git"
}
],
"require": {
"jazzsequence/nes.css": "dev-develop"
},
"require-dev": {
"pantheon-systems/pantheon-wp-coding-standards": "^2.0"
},
"scripts": {
"phpcs": "vendor/squizlabs/php_codesniffer/bin/phpcs -s --standard=phpcs.ruleset.xml .",
"phpcbf": "vendor/squizlabs/php_codesniffer/bin/phpcbf -s --standard=phpcs.ruleset.xml .",
"eslint": "npx eslint src/assets/js/**/*.js",
"stylelint": "npx stylelint src/assets/**/*.scss",
"shellcheck": "shellcheck ./bin/*.sh",
"lint": [
"@phpcs",
"@eslint",
"@stylelint",
"@shellcheck"
],
"setup-files": "bash bin/setup-files.sh",
"clean-files": "rm src/data/*.json",
"validate-files": "bash bin/validate-files.sh"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}