-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
93 lines (93 loc) · 2.3 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
85
86
87
88
89
90
91
92
93
{
"name": "@trainline/webpack-bundle-delta",
"version": "0.2.0",
"description": "See what has changed between two webpack compilations",
"keywords": [
"webpack",
"bundle",
"delta",
"diff",
"compare",
"javascript",
"optimize",
"minimize"
],
"main": "lib/index.js",
"repository": "https://github.com/trainline/webpack-bundle-delta",
"author": "David Houweling <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">= 10"
},
"files": [
"lib",
"LICENSE.md",
"README.md"
],
"typings": "lib/index.d.ts",
"bin": {
"webpack-bundle-delta": "lib/cli.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"commit": "git-cz",
"clean": "rimraf lib",
"build": "tsc --build tsconfig.build.json",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"cli": "ts-node ./src/cli.ts",
"danger": "ts-node ./test/danger.ts",
"release": "release-it"
},
"husky": {
"hooks": {
"pre-push": "yarn build && yarn lint && yarn test"
}
},
"dependencies": {
"axios": "^0.21.1",
"bytes": "^3.1.0",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"core-js": "^3.7.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.20",
"markdown-table": "^2.0.0",
"string-width": "^4.2.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"@types/bytes": "^3.1.0",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/markdown-table": "^2.0.0",
"@types/webpack4": "npm:@types/webpack@^4.41.24",
"commitizen": "^4.2.2",
"cross-env": "^7.0.2",
"cz-customizable": "^6.3.0",
"danger": "^10.5.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base-typescript-prettier": "^3.1.1",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jest-formatting": "^2.0.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"webpack": "^5.36.2",
"webpack4": "npm:webpack@^4.44.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}