-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
108 lines (108 loc) · 3.88 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "inspectpack",
"version": "4.7.1",
"description": "An inspection tool for Webpack frontend JavaScript bundles.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"inspectpack": "bin/inspectpack.js"
},
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/inspectpack.git"
},
"bugs": {
"url": "https://github.com/FormidableLabs/inspectpack/issues"
},
"homepage": "https://github.com/FormidableLabs/inspectpack",
"author": "Ryan Roemer <ryan.roemer@formidable.com>",
"license": "MIT",
"keywords": [
"webpack",
"webpack-plugin",
"plugin",
"bundle",
"size",
"duplicates",
"packages"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"clean-lib": "rimraf bin lib plugin",
"clean-test": "rimraf \"test/fixtures/*/dist-*\"",
"clean": "builder concurrent --buffer clean-lib clean-test",
"preversion": "yarn run clean && yarn run build && yarn run build-test && yarn run check",
"build-lib": "tsc",
"build-test-wp": "node test/fixtures/packages/webpack.js --config ../../test/fixtures/config/webpack.config.js && node test/fixtures/packages/check-bundle.js",
"build-test-scenarios": "builder envs --envs-path=test/fixtures/config/scenarios.json build-test-wp --buffer --queue=1",
"build-test-modes": "builder envs build-test-scenarios \"[{\\\"WEBPACK_MODE\\\":\\\"development\\\"},{\\\"WEBPACK_MODE\\\":\\\"production\\\"}]\" --queue=2",
"build-test-versions": "builder envs --envs-path=test/fixtures/config/versions.json build-test-modes --queue=4",
"build-test": "builder run build-test-versions",
"build": "yarn run clean-lib && yarn run build-lib",
"watch": "tsc -w",
"eslint": "eslint test/fixtures",
"tslint": "tslint --project tsconfig.lint.json -t stylish",
"lint": "builder concurrent --buffer eslint tslint",
"test": "builder concurrent --buffer test-bin test-lib",
"test-cov": "builder concurrent --buffer test-bin test-lib-cov",
"test-bin": "mocha \"test/bin/**/*.spec.ts\"",
"test-lib": "mocha \"test/lib/**/*.spec.ts\"",
"test-lib-cov": "nyc mocha \"test/**/*.spec.ts\"",
"test-usage": "node bin/inspectpack.js -h",
"check": "yarn run lint && yarn run test",
"check-ci": "yarn run lint && yarn run test-cov"
},
"dependencies": {
"chalk": "^4.1.0",
"fp-ts": "^2.6.1",
"io-ts": "^2.2.13",
"io-ts-reporters": "^1.2.2",
"pify": "^5.0.0",
"semver-compare": "^1.0.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.0.5",
"@types/pify": "^3.0.2",
"@types/semver-compare": "^1.0.1",
"@types/sinon-chai": "^3.2.4",
"@types/yargs": "^15.0.5",
"babel-eslint": "^10.1.0",
"builder": "^5.0.0",
"chai": "^4.2.0",
"codecov": "^3.7.0",
"css-loader": "^3.5.3",
"deepmerge": "^4.2.2",
"eslint": "^7.0.0",
"eslint-config-formidable": "^4.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-promise": "^4.2.1",
"execa": "^5.0.0",
"inspectpack-test-fixtures": "file:test/fixtures",
"mocha": "^8.2.1",
"mock-fs": "^4.12.0",
"nyc": "^15.0.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tslint": "^6.1.2",
"typescript": "^4.1.3",
"webpack": "file:test/fixtures/packages/webpack",
"webpack-cli": "file:test/fixtures/packages/webpack-cli",
"webpack-stats-plugin": "^1.0.2",
"webpack1": "file:test/fixtures/packages/webpack1",
"webpack2": "file:test/fixtures/packages/webpack2",
"webpack3": "file:test/fixtures/packages/webpack3",
"webpack4": "file:test/fixtures/packages/webpack4",
"webpack5": "file:test/fixtures/packages/webpack5"
}
}