-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 924 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 924 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
{
"name": "@webantic/nginx-config-parser",
"version": "1.6.1",
"description": "Convert nginx conf strings to JSON and back!",
"main": "index",
"repository": {
"url": "git+https://github.com/webantic/nginx-config-parser.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"release": "env $(cat .gh_token | xargs) npm-github-release"
},
"keywords": [
"nginx",
"conf",
"config",
"json",
"convert",
"conversion",
"parser",
"parse"
],
"author": "Webantic",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^9.2.0"
},
"dependencies": {
"glob": "^7.2.3"
}
}