-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "broccoli-concat-analyser",
"bin": {
"broccoli-concat-analyser": "lib/cli.js"
},
"version": "5.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "eslint . && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanpenner/broccoli-concat-analyser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanpenner/broccoli-concat-analyser/issues"
},
"homepage": "https://github.com/stefanpenner/broccoli-concat-analyser#readme",
"dependencies": {
"filesize": "^6.1.0",
"fs-extra": "^9.0.1",
"ora": "^5.1.0",
"pify": "^5.0.0",
"terser": "^5.3.7",
"walk-sync": "^2.2.0",
"workerpool": "^6.0.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-plugin-jest": "^24.0.2",
"html-validator": "^5.1.17",
"jest": "^26.4.2",
"release-it": "^14.2.0",
"release-it-lerna-changelog": "^3.0.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">= 10.*"
},
"volta": {
"node": "10.22.1"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}