-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.71 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
{
"name": "moment-timezone-data-webpack-plugin",
"version": "1.5.1",
"description": "Remove unneeded data from moment-timezone in a webpack build",
"main": "src/index.js",
"types": "src/index.d.ts",
"keywords": [
"webpack",
"moment",
"timezone",
"tzdata"
],
"author": "Gilmore Davidson <gilmoreorless@gmail.com>",
"license": "MIT",
"repository": "github:gilmoreorless/moment-timezone-data-webpack-plugin",
"bugs": "https://github.com/gilmoreorless/moment-timezone-data-webpack-plugin/issues",
"homepage": "https://github.com/gilmoreorless/moment-timezone-data-webpack-plugin",
"files": [
"src/*"
],
"scripts": {
"prebuild:example": "rm -rf example/dist/*",
"build:example": "cd example && for cfg in config/webpack.config.*.js; do webpack --config $cfg; done && gzip --keep --force dist/*.js",
"lint": "eslint example src test",
"version": "sed -i '' -e \"s/Unreleased/$npm_package_version – $(date +'%Y-%m-%d')/\" CHANGELOG.md && git add CHANGELOG.md",
"test": "mocha --require intelli-espower-loader test/*.test.js",
"test:performance": "node test/performance.js"
},
"dependencies": {
"find-cache-dir": "^3.0.0",
"make-dir": "^3.0.0"
},
"peerDependencies": {
"moment-timezone": ">= 0.1.0",
"webpack": "4.x.x || 5.x.x"
},
"devDependencies": {
"@types/webpack": "^5.28.0",
"del": "^5.0.0",
"eslint": "^8.20.0",
"glob": "^7.1.3",
"intelli-espower-loader": "^1.0.1",
"linkfs": "^2.1.0",
"memfs": "^3.2.0",
"mocha": "^9.2.2",
"moment": "^2.23.0",
"moment-locales-webpack-plugin": "^1.0.7",
"moment-timezone": "^0.5.43",
"power-assert": "^1.6.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}