-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
99 lines (99 loc) · 2.13 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
{
"name": "whybundled",
"version": "2.0.0",
"description": "Answers the question – Why the hell is this module in a bundle?",
"bin": {
"whybundled": "./dist/cli.js",
"wbd": "./dist/cli.js"
},
"main": "lib/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/d4rkr00t/whybundled"
},
"engines": {
"node": ">=8.4"
},
"scripts": {
"build": "opaline build",
"dev": "opaline dev",
"ci:validate": "npm run lint:typecheck",
"ci:test:coverage": "nyc --reporter=lcov npm test",
"ci:github-release": "conventional-github-releaser -p angular",
"test": "ava --verbose",
"test:coverage": "nyc npm test",
"lint:staged": "lint-staged",
"lint:typecheck": "tsc",
"prepare": "npm run build && npm run ci:validate",
"release:major": "pmm major",
"release:minor": "pmm minor",
"release:patch": "pmm patch"
},
"pre-commit": [
"lint:typecheck",
"lint:staged"
],
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"nyc": {
"per-file": true,
"include": [
"lib/**/*.ts",
"commands/**/*.ts"
],
"exclude": [
"lib/**/__tests__/**/*.ts",
"commands/**/__tests__/**/*.ts"
],
"cache": true,
"all": true
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"keywords": [
"webpack",
"bundle",
"analyzer",
"modules",
"size",
"dependencies"
],
"author": "",
"license": "MIT",
"dependencies": {
"@discoveryjs/json-ext": "^0.5.2",
"@types/micromatch": "^4.0.1",
"@types/treeify": "^1.0.0",
"colorette": "^1.2.2",
"micromatch": "^4.0.2",
"@opaline/core": "^0.5.3",
"treeify": "^1.1.0"
},
"devDependencies": {
"ava": "^3.15.0",
"conventional-github-releaser": "^3.1.5",
"coveralls": "^3.1.0",
"fixturez": "^1.1.0",
"lint-staged": "^10.5.4",
"nyc": "^15.1.0",
"pmm": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.2.1",
"strip-ansi": "^6.0.0",
"typescript": "^4.2.3",
"ts-node": "^9.1.1"
}
}