-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
67 lines (67 loc) · 1.88 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
{
"name": "rollup-plugin-rebase",
"version": "4.1.1",
"description": "The Rollup Rebase Plugin copies static assets as required from your JavaScript code to the destination folder and adjusts the references in there to point to the new location.",
"keywords": [
"rollup-plugin",
"file",
"assets"
],
"engines": {
"node": ">=14"
},
"author": {
"name": "Sebastian Werner",
"email": "[email protected]",
"url": "http://sebastian-software.de/werner"
},
"license": "Apache-2.0",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"files": [
"lib/"
],
"scripts": {
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"format": "effective-prettier '**/*.{md,json,js,jsx,ts,tsx}'",
"release": "release-it patch --ci",
"release:minor": "release-it minor --ci",
"release:major": "release-it major --ci",
"test": "jest --coverage",
"prepare": "rimraf lib && preppy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/rollup-plugin-rebase.git"
},
"dependencies": {
"@rollup/pluginutils": "^4.2.0",
"asset-hash": "^4.1.0",
"core-js": "^3.21.1",
"fs-extra": "^10.0.1",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"postcss-sass": "^0.5.0",
"postcss-scss": "^4.0.3",
"postcss-smart-asset": "^3.1.0",
"sugarss": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@effective/eslint-config": "^4.0.2",
"@effective/prettier": "^4.3.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"preppy": "^11.0.2",
"prettier": "^2.6.0",
"release-it": "^14.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"semver": "^7.3.5",
"typescript": "^4.6.2"
}
}