-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
84 lines (84 loc) · 2.09 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": "@relative-ci/agent",
"version": "4.2.13",
"description": "Relative CI agent",
"repository": "relative-ci/agent",
"main": "lib/index.js",
"types": "typings.d.ts",
"bin": {
"relative-ci-agent": "bin/index.js"
},
"scripts": {
"build": "babel src -d lib",
"lint": "eslint .",
"bump": "./scripts/bump.sh",
"release": "./scripts/release.sh",
"pretest:webpack-plugin": "npm install webpack4@npm:[email protected]",
"test": "npm run test:cli && npm run test:webpack-plugin",
"test:cli": "jest test/cli.test.js",
"test:webpack-plugin": "jest test/webpack-plugin",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">= 14.0"
},
"keywords": [
"webpack",
"bundle-size",
"bundle-analyzer",
"bundle-stats",
"stats",
"bundle",
"size",
"assets",
"chunks",
"modules"
],
"author": {
"name": "Viorel Cojocaru",
"email": "[email protected]",
"url": "http://beanon.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/relative-ci/agent/issues"
},
"homepage": "https://relative-ci.com/documentation/setup",
"devDependencies": {
"@babel/cli": "7.25.9",
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@release-it/conventional-changelog": "9.0.1",
"@types/jest": "29.5.14",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"jest": "29.7.0",
"memory-fs": "0.5.0",
"release-it": "17.10.0",
"webpack4": "npm:webpack@^4.42.1",
"webpack": "5.95.0"
},
"dependencies": {
"@bundle-stats/plugin-webpack-filter": "4.16.0",
"@bundle-stats/plugin-webpack-validate": "4.16.0",
"core-js": "3.38.1",
"cosmiconfig": "9.0.0",
"debug": "4.3.7",
"dotenv": "16.4.5",
"env-ci": "7.3.0",
"fs-extra": "11.2.0",
"isomorphic-fetch": "3.0.0",
"lodash": "4.17.21",
"yargs": "17.7.2"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0-rc.1"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
}
}
}