-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
{
"name": "context-filter-polyfill",
"version": "0.3.22",
"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 --disable-warning=ExperimentalWarning\" wtr --config web-test-runner.config.ts",
"test:watch": "npm run test -- --watch",
"test:ci:clean": "shx rm -rf coverage reports",
"test:ci:run": "npm run test -- --ci",
"test:ci": "run-s test:ci:*",
"build:clean": "shx rm -rf dist",
"build:bundle": "cross-env NODE_OPTIONS=\"--loader ts-node/esm --disable-warning=ExperimentalWarning\" ./esbuild.config.ts",
"build": "run-s build:*",
"start": "npm run build:bundle -- --serve"
},
"devDependencies": {
"@enke.dev/lint": "0.3.0",
"@types/chai": "5.0.1",
"@types/esbuild-copy-static-files": "0.1.4",
"@types/mocha": "10.0.10",
"@types/pixelmatch": "5.2.6",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "4.0.0",
"@web/dev-server-esbuild": "1.0.3",
"@web/test-runner": "0.19.0",
"@web/test-runner-junit-reporter": "0.7.2",
"@web/test-runner-playwright": "0.11.0",
"chai": "5.1.2",
"cross-env": "7.0.3",
"esbuild": "0.24.2",
"esbuild-copy-static-files": "0.1.0",
"eslint": "9.18.0",
"npm-run-all": "4.1.5",
"pixelmatch": "6.0.0",
"prettier": "3.4.2",
"shx": "0.3.4",
"sinon": "19.0.2",
"sinon-chai": "npm:sinon-chai-es@3.7.0",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"overrides": {
"chai": "$chai"
}
}