-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
{
"name": "grunt-php2html",
"description": "Frontend HTML generation with PHP",
"version": "1.0.0",
"homepage": "https://github.com/bezoerb/grunt-php2html",
"author": {
"name": "Ben Zörb",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/bezoerb/grunt-php2html.git"
},
"bugs": {
"url": "https://github.com/bezoerb/grunt-php2html/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/bezoerb/grunt-php2html/blob/master/LICENSE-MIT"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "^1.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-nodeunit": "^4.0.0",
"load-grunt-tasks": "^5.1.0",
"time-grunt": "^2.0.0"
},
"dependencies": {
"diff": "^4.0.2",
"htmlhint": "^0.14.1",
"lodash": "^4.17.20",
"php2html": "^4.0.0",
"qs": "^6.9.4",
"shelljs": "^0.8.4"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"keywords": [
"gruntplugin",
"php"
]
}