-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
70 lines (70 loc) · 2.59 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
{
"name": "pino-webpack-plugin",
"version": "2.0.0",
"description": "A pino plugin for webpack",
"author": "Paolo Insogna <shogun@cowtech.it>",
"homepage": "https://github.com/pinojs/pino-webpack-plugin",
"contributors": [
{
"name": "Paolo Insogna",
"url": "https://github.com/ShogunPanda"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/pinojs/pino-webpack-plugin/issues"
},
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"format": "prettier -w src test",
"lint": "eslint src test",
"test": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/*.test.js && npm run test:types",
"test:index": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/index.test.js && npm run test:types",
"test:cache": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/cached-build.test.js && npm run test:types",
"test:clean-plugin": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/clean-plugin.test.js && npm run test:types",
"test:dev-mode": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/development-mode.test.js && npm run test:types",
"test:explicit": "c8 --reporter=text --reporter=html tap --reporter=spec --no-coverage test/explicit-import.test.js && npm run test:types",
"test:watch": "tap --watch --reporter=spec --no-browser --coverage-report=text --coverage-report=html test/*.test.js",
"test:ci": "c8 --reporter=text --reporter=json --check-coverage --branches 90 --functions 90 --lines 90 --statements 90 tap --no-color --no-coverage test/*.test.js && npm run test:types",
"test:types": "tsd",
"ci": "npm run lint && npm run test:ci",
"prepublishOnly": "npm run ci",
"postpublish": "git push origin && git push origin -f --tags"
},
"dependencies": {
"memfs": "^4.2.0"
},
"devDependencies": {
"c8": "^10.1.2",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^7.12.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"execa": "^5.0.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"prettier": "^3.0.0",
"tap": "^16.0.0",
"tsd": "^0.31.0",
"webpack": "^5.75.0"
},
"peerDependencies": {
"webpack": "^5.61.0"
},
"engines": {
"node": ">= 12.13.0"
},
"tsd": {
"directory": "test/types"
}
}