-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.67 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
99
{
"name": "rollup-plugin-strip-shebang",
"version": "2.0.0",
"description": "A Rollup.js plugin to remove and optionally extract shebang.",
"keywords": [
"rollup",
"plugin",
"rollup-plugin",
"shebang",
"hashbang",
"extract",
"strip"
],
"type": "commonjs",
"exports": {
"types": "./dist/types/index.d.ts",
"import": "./dist/strip-shebang.mjs",
"require": "./dist/strip-shebang.cjs",
"node": "./dist/strip-shebang.cjs",
"default": "./dist/strip-shebang.cjs"
},
"main": "./dist/strip-shebang.cjs",
"module": "./dist/strip-shebang.mjs",
"jsnext:main": "./dist/strip-shebang.mjs",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"bundlib": "bundlib.config.mjs",
"scripts": {
"clean:cache": "rimraf --glob node_modules/.cache/{bundlib,jest}",
"clean:build": "rimraf dist coverage",
"clean": "run-p clean:*",
"lint:test": "eslint __test__",
"lint:src": "eslint src",
"lint:config": "eslint *.config.mjs",
"lint": "run-p lint:*",
"test": "jest --color -w 3",
"build": "bundlib -d",
"dev": "bundlib -dw",
"build-ci": "run-s lint test build",
"clean-build": "run-s clean build-ci",
"prerelease": "run-s clean-build",
"release": "standard-version",
"prepare": "husky"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@rollup/pluginutils": "^5.1.3",
"magic-string": "^0.30.12"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@types/eslint__js": "^8.42.3",
"@types/is-callable": "^1.1.2",
"@types/jest": "^29.5.14",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.9.0",
"bundlib": "^0.21.4",
"chokidar": "^4.0.1",
"core-js": "^3.39.0",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"mock-fs": "^5.4.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"rollup": "^4.25.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"peerDependencies": {
"rollup": "^2.0.0||^3.0.0||^4.0.0"
},
"overrides": {
"bundlib": {
"eslint": "$eslint"
}
},
"author": {
"name": "Manuel Fernandez",
"email": "[email protected]"
},
"homepage": "https://github.com/manferlo81/rollup-plugin-strip-shebang#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/manferlo81/rollup-plugin-strip-shebang.git"
},
"bugs": {
"url": "https://github.com/manferlo81/rollup-plugin-strip-shebang/issues"
},
"license": "MIT"
}