-
Notifications
You must be signed in to change notification settings - Fork 201
/
package.json
32 lines (32 loc) · 1.37 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
{
"name": "bikeshed",
"version": "1.0.0",
"description": "Bikeshed, a spec preprocessor =============================",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"//pwtests": "The version of the docker playwright image used here must exactly match the versions of @playwright/test in devDependencies and the Github Actions configuration (in playwright.yml). The version of playwright used in devDependencies should not include the ^ prefix, so it doesn't auto-upgrade and get out of sync.",
"pwtests": "docker run --rm --network host --volume $(pwd):/work/ --workdir /work/ -u $(id -u):$(id -g) -it mcr.microsoft.com/playwright:v1.35.1-jammy /bin/bash -c \"npm ci --loglevel=verbose && npx playwright test\"",
"pwtests-update": "docker run --rm --network host --volume $(pwd):/work/ --workdir /work/ -u $(id -u):$(id -g) -it mcr.microsoft.com/playwright:v1.35.1-jammy /bin/bash -c \"npm ci && npx playwright test --update-snapshots\"",
"start": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/speced/bikeshed.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/speced/bikeshed/issues"
},
"homepage": "https://github.com/speced/bikeshed#readme",
"devDependencies": {
"@playwright/test": "1.35.1"
},
"dependencies": {
}
}