This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "pakku",
"description": "All-in-one web bundler and compiler",
"author": "Marcus Zanona <[email protected]>",
"homepage": "https://github.com/zanona/pakku",
"repository": {
"type": "git",
"url": "[email protected]:zanona/pakku.git"
},
"bugs": {
"url": "https://github.com/zanona/pakku/issues"
},
"version": "1.4.1",
"main": "lib/index.js",
"bin": {
"pakku": "bin/pakku.js"
},
"scripts": {
"precommit": "lint-staged",
"test": "xo && nyc ava test/{unit,functional} -v",
"test:local": "xo && ava test/{unit,functional} -v"
},
"dependencies": {
"autoprefixer": "^7.2.5",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babelify": "^8.0.0",
"batch-promises": "^0.0.3",
"browserify": "^15.2.0",
"clean-css": "^4.1.9",
"filendir": "^1.0.0",
"html-minifier": "^3.5.8",
"imagemin": "^5.3.1",
"imagemin-jpegtran": "^5.0.2",
"imagemin-pngquant": "^5.0.1",
"imagemin-svgo": "^6.0.0",
"less": "^2.7.3",
"marked": "^0.3.12",
"postcss": "^6.0.16",
"postcss-flexbugs-fixes": "^3.3.0",
"uglify-js": "^3.3.8"
},
"devDependencies": {
"ava": "^0.24.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"mock-fs": "^4.4.2",
"nyc": "^11.4.1",
"prettier-package-json": "^1.4.0",
"xo": "^0.18.2"
},
"keywords": [
"automation",
"bundling",
"compression",
"html",
"package",
"performance",
"web"
],
"engines": {
"node": ">=6",
"npm": ">=5"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/zanona/pakku/blob/master/LICENSE"
},
{
"type": "MIT",
"url": "https://github.com/zanona/pakku/blob/master/LICENSE"
}
],
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"*.js": [
"xo --fix",
"git add"
]
},
"xo": {
"semicolon": false,
"rules": {
"complexity": [
"warn",
6
],
"max-statements": [
"warn",
30
]
}
}
}