-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 763 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 763 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
{
"name": "nginx-conf-parser",
"version": "0.1.1",
"description": "nginx config files parser based on jison",
"main": "./lib/index.js",
"private": true,
"bin" : {
"nginx-parse": "./lib/cli.js"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests"
},
"repository": {
"type": "git",
"url": "[email protected]:zxqfox/nginx-conf-parser.git"
},
"keywords": [
"nginx",
"config",
"parser"
],
"contributors": [
{
"name": "Alex Yaroshevich",
"email": "[email protected]"
}
],
"dependencies": {
"glob": "~3.2"
},
"devDependencies": {
"mocha": "*",
"uglify-js": "*",
"jison": ">=0.2.0"
},
"author": "Dalee Digital Agency <[email protected]>",
"license": "MIT X"
}