-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 802 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 802 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
{
"name": "web-components-toolbox-bernaqua",
"version": "0.0.1",
"description": "web components toolbox to be used in a CMS",
"main": "./index.html",
"scripts": {
"fix": "standard --fix",
"serve": "live-server --port=3000 --host=localhost --no-css-inject",
"test": "live-server --port=2200 --host=localhost --no-browser --ignorePattern=.* & npx playwright test --config=src/es/components/web-components-toolbox/e2e/ && killall node",
"update": "git submodule update --init --recursive --force"
},
"author": "weedshaker@gmail.com, edx.mgb@gmail.com",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.20.2",
"live-server": "*",
"standard": "*"
},
"standard": {
"ignore": [
"/src/es/components/web-components-toolbox/"
]
}
}