forked from thaibault/polyfill-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "@jobrad-gmbh/polyfill-bundler",
"version": "1.0.84",
"license": "CC-BY-3.0",
"description": "Polyfill service.",
"homepage": "https://torben.website/polyfill-bundler",
"documentationWebsite": {
"languages": [
"deDE",
"enUS"
],
"name": "polyfill-bundler",
"tagline": "",
"trackingCode": ""
},
"keywords": [
"polyfill",
"bundle",
"service"
],
"files": [
"index.d.ts",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/thaibault/polyfill-bundler"
},
"scripts": {
"build": "yarn build:types; yarn build:plain",
"build:plain": "babel --plugins @babel/plugin-transform-runtime --presets @babel/preset-env,@babel/preset-typescript --source-maps inline --out-file index.js index.ts && sed --in-place --regexp-extended 's:^// *(#![^ ]+ ).*$:\\1node:' index.js && chmod +x index.js",
"build:types": "tsc --emitDeclarationOnly",
"check:types": "tsc --noEmit",
"clear": "rimraf *.js *.d.ts",
"postversion": "yarn publish --non-interactive; git push --tags && git push",
"serve": "./index.js",
"start": "yarn serve",
"update": "yarn version patch && yarn npm publish",
"update:documentation": "documentation-website"
},
"devDependencies": {
"@babel/cli": "*",
"@babel/core": "*",
"@babel/plugin-transform-runtime": "*",
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@types/polyfill-library": "*",
"documentation-website": "*",
"rimraf": "*",
"typescript": "*",
"webpack": "*"
},
"dependencies": {
"@babel/runtime": "*",
"clientnode": "*",
"polyfill-library": "*"
},
"engines": {
"node": ">=20",
"npm": ">=10",
"yarn": ">=4"
}
}