-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 KB
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
{
"name": "@packtracker/webpack-plugin",
"version": "2.3.0",
"description": "Upload your webpack build stats to the packtracker.io service for greater visiblity into the artifacts you're delivering to your customers.",
"homepage": "https://app.packtracker.io",
"repository": "github:packtracker/webpack-plugin",
"license": "MIT",
"keywords": [
"webpack",
"stats",
"packtracker",
"bundle analyzer",
"bundle"
],
"engines": {
"node": ">= 6.14.4"
},
"main": "index.js",
"bin": {
"packtracker-upload": "./bin.js"
},
"scripts": {
"lint": "standard",
"test": "jest .test/",
"test:ci": "yarn test --coverage --coverageReporters=text-lcov | coveralls"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"coveralls": "^3.0.4",
"jest": "^24.8.0",
"standard": "^12.0.1",
"webpack": "^4.35.0",
"webpack-2": "npm:webpack@2",
"webpack-3": "npm:webpack@3"
},
"peerDependencies": {
"webpack": ">= 2.0.0"
},
"dependencies": {
"lodash": "^4.17.15",
"minimist": "^1.2.0",
"omit-deep": "^0.3.0",
"tiny-json-http": "^7.1.2",
"webpack-bundle-analyzer": "^3.4.1"
}
}