forked from sakirsensoy/apache-to-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 899 Bytes
/
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
{
"name": "apache-to-nginx",
"version": "0.0.4",
"description": "A simple script for Apache configuration file convert to Ngix conf.",
"main": "./main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./main.js",
"debugger": "node --debug-brk=5858 --nolazy ./main.js"
},
"preferGlobal": "true",
"bin": {
"apache-to-nginx": "./bin/index"
},
"directories": {
"bin": "./bin"
},
"repository": {
"type": "git",
"url": "https://github.com/sakirsensoy/apache-to-nginx.git"
},
"keywords": [
"apache",
"nginx",
"apache-to-nginx",
"apache-2-nginx"
],
"author": "Şakir Şensoy",
"license": "MIT",
"bugs": {
"url": "https://github.com/sakirsensoy/apache-to-nginx/issues"
},
"dependencies": {
"apacheconf": "0.0.5",
"graceful-fs": "4.1.2",
"string-template": "0.2.1"
}
}