-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.81 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@shgysk8zer0/polyfills",
"version": "0.4.5",
"private": false,
"type": "module",
"description": "A collection of JavaScript polyfills",
"main": "./node.min.js",
"module": "./node.min.js",
"unpkg": "./all.min.js",
"exports": {
".": {
"import": "./node.min.js",
"require": "./node.min.js"
},
"./*.js": {
"import": "./*.js"
},
"./*.cjs": {
"import": "./*.js"
},
"./*.mjs": {
"import": "./*.js"
},
"./*": {
"import": "./*.js"
}
},
"config": {
"serve": {
"domain": "localhost",
"path": "./",
"port": 8080
},
"dir": {
"css": "css/ components/",
"js": "js/ components/",
"img": "img/",
"html": "components/"
}
},
"scripts": {
"test": "npm run lint:js && npm run lint:html && npm run run:tests",
"postinstall": "if [ -f './assets/dedent.cjs' ]; then npm run build; fi",
"preversion": "npm test && npm run build",
"prepare": "npm test && npm run build",
"start": "http-server ${npm_package_config_serve_path} -c-1 --port ${npm_package_config_serve_port} --gzip true --brotli true -a ${npm_package_config_serve_domain} -o /test/",
"fix": "npm run fix:js",
"fix:js": "eslint . --fix",
"lint:js": "eslint .",
"lint:html": "htmlhint \"**/*.html\"",
"build": "npm run build:js",
"build:js": "rollup -c rollup.config.js",
"run:tests": "node --test *.test.js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/polyfills.git"
},
"keywords": [
"polyfills",
"shims"
],
"author": "Chris Zuber <[email protected]>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/shgysk8zer0/polyfills/issues"
},
"homepage": "https://github.com/shgysk8zer0/polyfills#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@shgysk8zer0/eslint-config": "^1.0.1",
"@shgysk8zer0/js-utils": "^1.0.1",
"htmlhint": "^1.1.4",
"http-server": "^14.1.1",
"string-dedent": "^3.0.1",
"urlpattern-polyfill": "^10.0.0"
},
"dependencies": {
"@aegisjsproject/sanitizer": "^0.1.0",
"@aegisjsproject/trusted-types": "^1.0.1"
}
}