-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@tjenkinson/redos-detector-demo",
"browserslist": "> 0.5%, last 2 versions, not dead, not ios_saf < 13",
"targets": {
"default": {
"context": "browser"
}
},
"private": true,
"scripts": {
"start": "parcel serve src/index.html",
"build": "parcel build src/index.html",
"serve": "http-server --port 3000 dist",
"test": "playwright test",
"check": "tsc --noEmit",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"build:ci": "npm run check && npm run prettier:check && npm run build",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/redos-detector-demo.git"
},
"author": "Tom Jenkinson <tom@tjenkinson.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/redos-detector-demo/issues"
},
"homepage": "https://github.com/tjenkinson/redos-detector-demo#readme",
"devDependencies": {
"@playwright/test": "1.49.1",
"comlink": "4.4.2",
"http-server": "14.1.1",
"husky": "8.0.3",
"lint-staged": "15.3.0",
"lit": "3.2.1",
"micromatch": "4.0.8",
"parcel": "2.13.3",
"playwright": "1.49.1",
"posthtml-expressions": "1.11.4",
"prettier": "3.0.3",
"redos-detector": "6.1.2",
"tslib": "2.8.1",
"typescript": "5.7.3"
}
}