-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 756 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 756 Bytes
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
{
"name": "grunt-php",
"version": "3.0.0",
"description": "Start a PHP server",
"license": "MIT",
"repository": "sindresorhus/grunt-php",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && grunt"
},
"files": [
"tasks"
],
"keywords": [
"gruntplugin",
"php",
"server",
"webserver",
"web-server",
"http"
],
"dependencies": {
"php-server": "^0.2.0"
},
"devDependencies": {
"got": "^9.6.0",
"grunt": "^1.0.4",
"grunt-browser-sync": "^2.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-simple-mocha": "^0.4.0",
"xo": "^0.24.0"
},
"peerDependencies": {
"grunt": ">=1"
}
}