forked from webpack-contrib/closure-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@domainesia/closure-webpack-plugin",
"version": "2.5.0-pr.1",
"description": "Webpack Google Closure Compiler and Closure Library plugin",
"author": "Chad Killingsworth (@ChadKillingsworth)",
"license": "MIT",
"main": "src/closure-compiler-plugin.js",
"files": [
"src",
"schema"
],
"scripts": {
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache src test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"release": "standard-version",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"ci:lint": "npm run lint",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand"
},
"dependencies": {
"acorn": "^5.0.0",
"acorn-dynamic-import": "^2.0.0",
"schema-utils": "1.x",
"unquoted-property-validator": "^1.0.2",
"webpack-sources": "1.x"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"conventional-github-releaser": "^3.1.3",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"google-closure-compiler": "^20200830.0.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"memory-fs": "^0.5.0",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"standard-version": "^8.0.1",
"webpack": "4.x"
},
"engines": {
"node": ">= 6.9.0 || >= 8.9.0"
},
"peerDependencies": {
"google-closure-compiler": ">=20200830.0.0",
"webpack": "4.x"
},
"homepage": "https://github.com/domainesia/closure-webpack-plugin",
"repository": "https://github.com/domainesia/closure-webpack-plugin",
"bugs": "https://github.com/domainesia/closure-webpack-plugin/issues",
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}