-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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
{
"name": "test-webpack-reporter-plugin",
"version": "1.0.2",
"description": "An output-reporter plugin to customize webpack's output",
"main": "src/cjs.js",
"repository": "https://github.com/misterdev/webpack-reporter-plugin.git",
"author": "Devid Farinelli @misterdev",
"license": "MIT",
"scripts": {
"lint": "npm-run-all -l -p \"lint:**\"",
"lint:prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --list-different",
"lint:code": "eslint --cache src test",
"lint:types": "tsc --pretty",
"pretest": "npm run lint",
"prettier": "prettier \"{**/*,*}.{js,json,md,yml,css}\" --write",
"publish": "np",
"security": "npm audit",
"test": "npm run test:coverage",
"test:only": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom=\"src/**/*.js\" --coverage"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.1.0",
"@types/node": "^12.6.8",
"@types/tapable": "^1.0.4",
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
"commitlint": "^8.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.1",
"husky": "^2.7.0",
"jest": "^24.8.0",
"jest-mock-process": "^1.2.0",
"lint-staged": "^8.2.1",
"np": "^5.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"typescript": "^3.5.3",
"webpack": "^4.36.1"
},
"dependencies": {
"ajv": "^6.10.2",
"tapable": "^1.1.3"
}
}