-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "@rschristian/babel-plugin-webpack-chunk-name-comments",
"version": "0.1.2",
"type": "module",
"main": "./index.cjs",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"license": "MIT",
"description": "Babel plugin used to generate Webpack magic comments on dynamic import statements",
"repository": "https://github.com/rschristian/babel-plugin-webpack-chunk-name-comments",
"keywords": [
"webpack",
"chunk name",
"chunk names",
"babel plugin",
"babel-plugin"
],
"files": [
"index.js",
"index.cjs",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"prepublishOnly": "yarn build",
"build": "node scripts/build.js",
"test": "uvu tests",
"format": "prettier --write --ignore-path .gitignore ."
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@types/babel__core": "^7.1.19",
"prettier": "^2.7.1",
"prettier-config-rschristian": "^0.1.1",
"uvu": "^0.5.6"
},
"prettier": "prettier-config-rschristian"
}