-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
81 lines (81 loc) · 1.76 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
{
"name": "grunt-critical",
"description": "Grunt task to extract & inline critical-path CSS from HTML",
"version": "3.0.1",
"author": "Ben Zörb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bezoerb/grunt-critical/issues"
},
"homepage": "https://github.com/bezoerb/grunt-critical#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bezoerb/grunt-critical.git"
},
"keywords": [
"critical-path",
"css",
"perf",
"gruntplugin"
],
"main": "tasks/critical.js",
"scripts": {
"lint": "eslint tasks/*.js --fix",
"test": "npm run lint && grunt ci"
},
"dependencies": {
"async": "^3.2.4",
"critical": "^5.0.2",
"glob": "^8.0.3",
"lodash": "^4.17.20"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.42.0",
"eslint-config-xo-space": "^0.33.0",
"eslint-plugin-prettier": "^4.2.1",
"finalhandler": "^1.2.0",
"grunt": "^1.3.0",
"grunt-complexity": "^1.1.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-simple-mocha": "^0.4.1",
"load-grunt-tasks": "^5.1.0",
"normalize-newline": "^4.1.0",
"prettier": "^2.7.1",
"serve-static": "^1.15.0"
},
"files": [
"tasks"
],
"engines": {
"node": ">=14.16"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": false
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"xo-space",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
]
},
"overrides": []
}
}