-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "mechanic",
"version": "1.8.0",
"description": "Manage nginx as a reverse proxy for node apps. Written with the Apostrophe CMS in mind.",
"main": "app.js",
"scripts": {
"test": "npx eslint . && cd tests && node test"
},
"repository": {
"type": "git",
"url": "https://github.com/apostrophecms/mechanic"
},
"keywords": [
"nginx",
"apostrophe",
"reverse proxy"
],
"author": "Apostrophe Technologies, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/apostrophecms/mechanic/issues"
},
"homepage": "https://github.com/apostrophecms/mechanic",
"dependencies": {
"@apostrophecms/nunjucks": "^2.5.4",
"boring": "^0.1.0",
"lodash": "^4.0.0",
"prettiest": "^1.1.0",
"shell-escape": "^0.2.0",
"shelljs": "^0.3.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"eslint-config-apostrophe": "^3.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0"
},
"bin": {
"mechanic": "./bin/mechanic"
}
}