-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.35 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
{
"author": "MadProbe#7435",
"name": "iterator-helpers-polyfill",
"description": "A polyfill for Iterator helpers proposal",
"version": "3.0.1",
"license": "MIT",
"type": "module",
"main": "./build/bundle.min.js",
"module": "./build/bundle.min.mjs",
"types": "./declarations/index.d.ts",
"exports": {
"types": {
"import": "./declarations/index.d.mts",
"require": "./declarations/index.d.cts",
"default": "./declarations/index.d.ts"
},
"import": "./build/bundle.min.mjs",
"require": "./build/bundle.min.cjs",
"default": "./build/bundle.min.js"
},
"directories": {
"test": "tests",
"lib": "src"
},
"scripts": {
"test": "npm run build-full && node ./tests/test.cjs",
"build": "rollup -c",
"build-full": "rollup -c --environment FULL",
"build-dev": "rollup -c rollup.config.dev.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"update": "npm i -D @typescript-eslint/eslint-plugin@latest eslint@latest eslint-plugin-import@latest rollup@latest @rollup/plugin-eslint@latest @rollup/plugin-terser rollup-plugin-typescript2@latest typescript@latest rollup-plugin-copy@latest --force",
"prepublishOnly": "npm run build-full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MadProbe/iterator-helpers-polyfill.git"
},
"keywords": [
"javascript",
"typescript",
"iterator-library",
"iterator-functions",
"iterator-helpers",
"iterator-helpers-proposal"
],
"engines": {
"node": ">=10.0.0",
"chrome": ">=63",
"firefox": ">=57",
"safari": ">=11"
},
"bugs": {
"url": "https://github.com/MadProbe/iterator-helpers-polyfill/issues"
},
"homepage": "https://github.com/MadProbe/iterator-helpers-polyfill#readme",
"devDependencies": {
"@rollup/plugin-eslint": "^9.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.51.0",
"eslint-plugin-import": "^2.28.1",
"rollup": "^4.14.2",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.4.5"
}
}