-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
75 lines (75 loc) · 2.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "context-filter-polyfill",
"version": "0.3.21",
"description": "Polyfills the `CanvasRenderingContext2d` and `OffscreenCanvasRenderingContext2D` capability of adopting CSS3 filters on canvas contexts (at least partially).",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:davidenke/context-filter-polyfill.git"
},
"author": {
"name": "David Enke",
"email": "david@enke.dev",
"url": "http://www.davidenke.de"
},
"license": "MIT",
"scripts": {
"lint": "eslint",
"test": "cross-env NODE_OPTIONS='--loader ts-node/esm --no-warnings' wtr --config web-test-runner.config.ts",
"test:watch": "cross-env NODE_OPTIONS='--loader ts-node/esm --no-warnings' wtr --config web-test-runner.config.ts --watch",
"test:ci:clean": "shx rm -rf coverage reports",
"test:ci:run": "cross-env NODE_OPTIONS='--loader ts-node/esm --no-warnings' wtr --config web-test-runner.config.ts --ci",
"test:ci": "run-s test:ci:*",
"build:clean": "shx rm -rf dist",
"build:bundle": "node --loader ts-node/esm ./esbuild.config.ts",
"build": "run-s build:*",
"start": "node --loader ts-node/esm ./esbuild.config.ts --serve"
},
"devDependencies": {
"@eslint/js": "9.10.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@types/esbuild-copy-static-files": "0.1.3",
"@types/eslint__eslintrc": "2.1.2",
"@types/eslint__js": "8.42.3",
"@types/mocha": "10.0.8",
"@types/pixelmatch": "5.2.6",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/eslint-plugin": "8.5.0",
"@typescript-eslint/parser": "8.5.0",
"@web/dev-server-esbuild": "1.0.2",
"@web/test-runner": "0.19.0",
"@web/test-runner-junit-reporter": "0.7.2",
"@web/test-runner-playwright": "0.11.0",
"cross-env": "7.0.3",
"esbuild": "0.23.1",
"esbuild-copy-static-files": "0.1.0",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"npm-run-all": "4.1.5",
"pixelmatch": "6.0.0",
"prettier": "3.3.3",
"shx": "0.3.4",
"sinon": "19.0.2",
"sinon-chai-es": "3.7.0",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"typescript-eslint": "8.5.0"
},
"overrides": {
"@typescript-eslint/eslint-plugin": "$@typescript-eslint/eslint-plugin",
"eslint": "$eslint"
}
}