-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.72 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.72 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
47
48
49
50
51
52
53
{
"name": "PHPDebugConsole",
"version": "3.5.0",
"description": "Build CSS & Javascript for PHPDebugConsole",
"keywords": [
"Debug",
"PHP"
],
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/bkdotcom/PHPDebugConsole.git"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"build": "npm run nra -- --parallel --continue-on-error build:*",
"build:css": "npx sass --silence-deprecation=import --style=compressed --no-source-map scss/:css/",
"build:js": "npx rollup -c",
"cs": "npm run nra -- --continue-on-error cs:*",
"cs:css": "npx stylelint ./scss",
"cs:js": "npx eslint js_src/*",
"cs:php": "../../vendor/bin/phpcs ../ --extensions=php",
"nra": "node node_modules/npm-run-all/bin/npm-run-all",
"test": "NODE_NO_WARNINGS=1 npx jest",
"watch": "npm run nra -- --parallel watch:*",
"watch:js": "NODE_ENV=watch npx nodemon --watch js_src/ --ext js --exec \"npm run build:js\"",
"watch:scss": "npx nodemon --watch scss/ --ext scss --exec \"npm run build:css\""
},
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^1.0.0",
"babel-jest": "^29.7.0",
"eslint": "^9.27.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^30.2.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"rollup": "^4.59.0",
"sass": "^1.82.0",
"stylelint": "^16.19.1",
"stylelint-config-standard": "^38.0.0"
},
"dependencies": {
"tippy.js": "^6.2.7"
}
}