-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 864 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 864 Bytes
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
{
"name": "debug_kit",
"version": "1.0.0",
"description": "CakePHP Debug Kit",
"author": "CakePHP Team",
"license": "MIT",
"homepage": "https://github.com/cakephp/debug_kit#readme",
"bugs": {
"url": "https://github.com/cakephp/debug_kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakephp/debug_kit.git"
},
"keywords": [
"cakephp",
"debug",
"kit"
],
"devDependencies": {
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
},
"scripts": {
"cs-check": "npx eslint webroot/js/main.js webroot/js/inject-iframe.js webroot/js/modules/*.js",
"cs-fix": "npx eslint webroot/js/main.js webroot/js/inject-iframe.js webroot/js/modules/*.js --fix"
}
}