-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.84 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.84 KB
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
{
"name": "rollup-plugin-external-assets",
"version": "4.1.1",
"description": "A rollup plugin to make assets external but include them in the output.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"files": [
"dist/**/*"
],
"scripts": {
"test": "rimraf tests/coverage && jest",
"test:coverage": "rimraf tests/coverage && jest --coverage",
"coverage": "codecov",
"clean": "rimraf dist tests/coverage",
"build": "rimraf dist && rollup -c --bundleConfigAsCjs",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recursive-beast/rollup-plugin-external-assets.git"
},
"keywords": [
"rollup-plugin",
"assets",
"import",
"external"
],
"author": {
"name": "Soufiane Yakoubi",
"email": "splentercell.1997@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/recursive-beast/rollup-plugin-external-assets/issues"
},
"homepage": "https://github.com/recursive-beast/rollup-plugin-external-assets#readme",
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@jest/globals": "^29.7.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/common-tags": "^1.8.4",
"@types/mock-fs": "^4.13.4",
"husky": "^9.0.10",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.9.6",
"semantic-release": "^23.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@babel/generator": "^7.23.6",
"@babel/parser": "^7.23.9",
"@babel/traverse": "^7.23.9",
"@rollup/pluginutils": "^5.1.0",
"joi": "^17.12.1",
"tslib": "^2.6.2"
}
}