-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "sanitizer-polyfill",
"version": "0.9.0",
"description": "polyfill for the sanitizer api specification",
"author": "Mozilla",
"contributors": [
"Frederik Braun <[email protected]>"
],
"license": "MPL-2.0",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/sanitizer-polyfill.git"
},
"scripts": {
"lint": "eslint . --exit-on-fatal-error",
"prettier": "prettier --check .",
"build:browser": "rollup -c rollup.config.browser.js",
"build:browser-min": "rollup -c rollup.config.browser-min.js",
"build:cjs": "rollup -c rollup.config.cjs.js",
"build:mjs": "rollup -c rollup.config.esm.js",
"build": "npm run build:browser && npm run build:browser-min && npm run build:cjs && npm run build:mjs"
},
"bugs": {
"url": "https://github.com/mozilla/sanitizer-polyfill/issues"
},
"homepage": "https://github.com/mozilla/sanitizer-polyfill#readme",
"files": [
"dist",
"src",
"package.json",
"package-lock.json",
"LICENSE.md",
"README.md"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-compat": "^5.0.0",
"eslint-plugin-jsdoc": "^48.4.0",
"prettier": "^3.3.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"dompurify": "^3.1.5"
},
"main": "./dist/sanitizer-polyfill.mjs",
"exports": {
".": {
"require": "./dist/sanitizer-polyfill.cjs",
"import": "./dist/sanitizer-polyfill.mjs"
}
}
}