-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "rollup-plugin-license",
"version": "3.5.3",
"description": "Rollup plugin to add license banner to the final bundle and output third party licenses",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "gulp lint",
"clean": "gulp clean",
"build": "gulp build",
"watch": "gulp watch",
"test": "gulp test",
"tdd": "gulp tdd",
"changelog": "gulp changelog",
"prepare": "npm run build",
"release": "gulp release:minor",
"release:patch": "gulp release:patch",
"release:minor": "gulp release:minor",
"release:major": "gulp release:major"
},
"keywords": [
"rollup",
"rollup-plugin"
],
"author": "Mickael Jeanroy <mickael.jeanroy@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/mjeanroy/rollup-plugin-license",
"bugs": {
"url": "https://github.com/mjeanroy/rollup-plugin-license/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mjeanroy/rollup-plugin-license"
},
"peerDependencies": {
"rollup": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"commenting": "~1.1.0",
"fdir": "6.4.2",
"lodash": "~4.17.21",
"magic-string": "~0.30.0",
"moment": "~2.30.1",
"package-name-regex": "~2.0.6",
"spdx-expression-validate": "~2.0.0",
"spdx-satisfies": "~5.0.1"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/register": "7.25.9",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-virtual": "3.0.2",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"ansi-colors": "4.1.3",
"babel-plugin-add-module-exports": "1.0.4",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"fancy-log": "2.0.0",
"fs-extra": "11.2.0",
"globalthis": "1.0.4",
"gulp": "5.0.0",
"gulp-conventional-changelog": "5.0.0",
"gulp-jasmine": "4.0.0",
"jasmine": "3.10.0",
"jasmine-core": "3.10.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.24.4",
"rollup-plugin-prettier": "4.1.1",
"rollup-plugin-strip-banner": "3.1.0",
"tmp": "0.2.3",
"typescript": "5.6.3"
},
"engines": {
"node": ">=14.0.0"
}
}