-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
33 lines (33 loc) · 1.23 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
{
"name": "moment-locales-webpack-plugin",
"version": "1.2.0",
"description": "Strip unused locales from Moment.js",
"main": "index.js",
"scripts": {
"test-webpack-5": "cross-env WEBPACK_PACKAGE=webpack jest",
"test-webpack-4": "cross-env WEBPACK_PACKAGE=webpack-v4 jest",
"test-code-style": "echo 'If there’re any files listed below, this means they break the code style. Fix them with: yarn fix-code-style' && prettier --list-different '**/*.js'",
"fix-code-style": "prettier --write '**/*.js'",
"test": "yarn test-webpack-5 && yarn test-webpack-4 && yarn test-code-style"
},
"repository": "iamakulov/moment-locales-webpack-plugin",
"author": "Ivan Akulov <[email protected]> (iamakulov.com)",
"license": "MIT",
"peerDependencies": {
"moment": "^2.8.0",
"webpack": "^1 || ^2 || ^3 || ^4 || ^5"
},
"devDependencies": {
"cross-env": "^7.0.2",
"jest": "^24.8.0",
"moment": "^2.21.0",
"prettier": "^2.3.2",
"proxyquire": "^2.0.1",
"temp-dir": "^1.0.0",
"webpack": "^5.0.0-beta.14",
"webpack-v4": "npm:webpack@^4"
},
"dependencies": {
"lodash.difference": "^4.5.0"
}
}