-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "themed-progress-plugin",
"description": "A Webpack plugin featuring an emoji-themed loading bar for a fun and aesthetic build process.",
"repository": {
"type": "git",
"url": "git+https://github.com/01taylop/themed-progress-plugin.git"
},
"version": "1.0.1",
"type": "module",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib"
],
"scripts": {
"build:cjs": "babel src -d lib --env-name cjs --out-file-extension .cjs",
"build:esm": "babel src -d lib --env-name esm --out-file-extension .js",
"build": "rimraf lib && yarn run build:cjs && yarn run build:esm",
"prepublishOnly": "yarn test --coverage && yarn build && yarn test:bundles",
"test": "jest",
"test:bundles": "jest --config ./jest/cjs.config.js && jest --config ./jest/esm.config.js"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"dependencies": {
"chalk": "4.1.2"
},
"devDependencies": {
"@babel/cli": "7.24.6",
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"babel-plugin-add-import-extension": "1.6.0",
"jest": "29.7.0",
"rimraf": "5.0.7",
"webpack": "5.91.0"
},
"author": "Patrick Taylor <[email protected]>",
"keywords": [
"emoji",
"loading",
"plugin",
"progress",
"themed",
"webpack"
]
}