This repository has been archived by the owner on Aug 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.41 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
75
76
77
78
79
80
81
82
83
84
{
"name": "@flex-development/webpack-tap-done",
"description": "Execute (a)synchronous callbacks after Webpack compilations.",
"version": "1.0.0",
"keywords": [
"async-callback",
"callback-functions",
"callbacks",
"tapable",
"webpack",
"webpack-compiler",
"webpack-compiler-hooks",
"webpack-hooks",
"webpack-plugin"
],
"homepage": "https://github.com/flex-development/webpack-tap-done",
"repository": "git://github.com/flex-development/webpack-tap-done.git",
"bugs": {
"url": "https://github.com/flex-development/webpack-tap-done/issues",
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"author": {
"name": "Lexus Drumgold",
"email": "[email protected]",
"url": "https://flexdevelopment.llc"
},
"publishConfig": {
"access": "public",
"directory": "./dist",
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf node_modules || true; yarn",
"format": "prettier --write \"./\"",
"lint": "eslint . --ext js,ts,tsx --fix --cache",
"test": "jest --detectOpenHandles --passWithNoTests",
"precompile": "rm -rf ./dist || true",
"compile": "tsc -p tsconfig.prod.json",
"release": "zsh ./scripts/release.sh",
"prepublishOnly": "yarn compile",
"postpublish": "git ch next; git rebase origin/main; git pnv"
},
"dependencies": {
"debug": "latest"
},
"devDependencies": {
"@commitlint/cli": "next",
"@commitlint/config-conventional": "next",
"@commitlint/format": "next",
"@types/debug": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/webpack": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"execa": "latest",
"husky": "4.3.8",
"jest": "next",
"lint-staged": "latest",
"prettier": "latest",
"standard-version": "latest",
"ts-jest": "next",
"ts-node": "latest",
"typescript": "4.2.0-beta",
"underscore-cli": "latest",
"webpack": "latest",
"webpack-merge": "latest"
},
"peerDependencies": {
"webpack": "*"
},
"release": {
"allowBranch": "main"
}
}