UNPKG

2.39 kBJSONView Raw
1{
2 "name": "closure-webpack-plugin",
3 "version": "2.5.0",
4 "description": "Webpack Google Closure Compiler and Closure Library plugin",
5 "author": "Chad Killingsworth (@ChadKillingsworth)",
6 "license": "MIT",
7 "main": "src/closure-compiler-plugin.js",
8 "files": [
9 "src",
10 "schema"
11 ],
12 "scripts": {
13 "commitlint": "commitlint",
14 "commitmsg": "commitlint -e $GIT_PARAMS",
15 "lint": "eslint --cache src test",
16 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
17 "lint-staged": "lint-staged",
18 "release": "standard-version",
19 "release:ci": "conventional-github-releaser -p angular",
20 "release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
21 "test": "jest",
22 "test:watch": "jest --watch",
23 "test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
24 "ci:lint": "npm run lint",
25 "ci:test": "npm run test -- --runInBand",
26 "ci:coverage": "npm run test:coverage -- --runInBand"
27 },
28 "dependencies": {
29 "acorn": "^5.0.0",
30 "acorn-dynamic-import": "^2.0.0",
31 "schema-utils": "1.x",
32 "unquoted-property-validator": "^1.0.2",
33 "webpack-sources": "1.x"
34 },
35 "devDependencies": {
36 "@commitlint/cli": "^8.2.0",
37 "@commitlint/config-angular": "^8.2.0",
38 "@webpack-contrib/eslint-config-webpack": "^3.0.0",
39 "babel-core": "^6.26.3",
40 "babel-jest": "^24.9.0",
41 "babel-preset-env": "^1.7.0",
42 "conventional-github-releaser": "^3.1.3",
43 "del": "^5.1.0",
44 "eslint": "^6.8.0",
45 "eslint-plugin-import": "^2.19.1",
46 "eslint-plugin-prettier": "^3.1.2",
47 "google-closure-compiler": "^20200830.0.0",
48 "husky": "^3.1.0",
49 "jest": "^24.9.0",
50 "lint-staged": "^9.5.0",
51 "memory-fs": "^0.5.0",
52 "pre-commit": "^1.2.2",
53 "prettier": "^1.19.1",
54 "standard-version": "^8.0.1",
55 "webpack": "4.x"
56 },
57 "engines": {
58 "node": ">= 6.9.0 || >= 8.9.0"
59 },
60 "peerDependencies": {
61 "google-closure-compiler": ">=20200830.0.0",
62 "webpack": "4.x"
63 },
64 "homepage": "https://github.com/webpack-contrib/closure-webpack-plugin",
65 "repository": "https://github.com/webpack-contrib/closure-webpack-plugin",
66 "bugs": "https://github.com/webpack-contrib/closure-webpack-plugin/issues",
67 "pre-commit": "lint-staged",
68 "lint-staged": {
69 "*.js": [
70 "eslint --fix",
71 "git add"
72 ]
73 }
74}