forked from danielcardoso/html-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
148 lines (148 loc) · 3.58 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "html-pages",
"title": "HTML Pages",
"description": "Simple development HTTP Server for file serving and directory listing made by a Designer. Use it for hacking your HTML/JavaScript/CSS files but not for deploying your final site.",
"desc": "Simple development HTTP Server for file serving and directory listing made by a Designer",
"version": "3.1.0",
"files": [
"bin",
"example",
"json",
"lib",
"public",
"views",
"LICENSE.md",
"README.md",
"package.json"
],
"main": "./lib/api.js",
"bin": {
"html-pages": "./bin/index.js"
},
"engines": {
"node": ">=8.6.0"
},
"author": {
"name": "Daniel Cardoso",
"email": "[email protected]",
"url": "http://www.github.com/danielcardoso"
},
"homepage": "https://github.com/danielcardoso/html-pages#readme",
"npmJsLink": "https://www.npmjs.com/package/html-pages",
"bugs": {
"url": "https://github.com/danielcardoso/html-pages/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/danielcardoso/html-pages.git"
},
"keywords": [
"html",
"http-server",
"front-end",
"development",
"tool",
"http",
"cli",
"dev",
"web",
"tool",
"now",
"cors",
"mime",
"rest",
"static",
"file",
"server"
],
"scripts": {
"js-lint": "semistandard --verbose | snazzy",
"css-lint": "stylelint 'public/scss/*.scss' --color",
"lint": "npm run js-lint && npm run css-lint",
"test-mocha": "mocha test/test-*.js",
"test-vulnerabilities": "snyk test",
"test": "snyk test && npm run test-mocha && npm run lint && npm run test-vulnerabilities",
"generate-example": "node ./icon-generator/build.js"
},
"lint-staged": {
"*.{js,jsx,ts}": [
"npm run js-lint",
"git add"
],
"*.{css,scss,sass}": [
"npm run css-lint",
"git add"
]
},
"preferGlobal": true,
"semistandard": {
"ignore": [
"public/",
"example/",
"__stuff"
],
"env": [
"mocha"
],
"parser": "babel-eslint",
"rules": {
"no-useless-catch": 0
}
},
"devDependencies": {
"babel-eslint": "10.0.3",
"cheerio": "0.22.0",
"eslint-config-semistandard": "15.0.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.0.7",
"lint-staged": "9.4.0",
"mocha": "6.2.0",
"mocha-logger": "1.0.6",
"semistandard": "14.2.0",
"snazzy": "8.0.0",
"snyk": "1.228.5",
"stylelint": "11.0.0",
"stylelint-config-sass-guidelines": "6.1.0",
"supertest": "4.0.2",
"urllib-sync": "1.1.4"
},
"dependencies": {
"basic-auth": "2.0.1",
"bluebird": "3.5.5",
"camelcase": "5.3.1",
"camelcase-keys": "6.0.1",
"chalk": "2.4.2",
"clipboardy": "2.1.0",
"command-line-args": "5.1.1",
"command-line-usage": "6.0.2",
"cors": "2.8.5",
"dargs": "7.0.0",
"detect-port": "1.3.0",
"file-exists": "5.0.1",
"filesize": "4.2.1",
"fs-extra": "8.1.0",
"fs-promise": "2.0.3",
"handlebars": "4.3.4",
"ignore": "5.1.4",
"ip": "1.1.5",
"lodash": "4.17.15",
"micro": "9.3.4",
"micro-compress": "1.0.0",
"mime-types": "2.1.24",
"moment": "2.24.0",
"node-notifier": "6.0.0",
"node-version": "2.0.0",
"opn": "6.0.0",
"path-type": "4.0.0",
"performance-now": "2.1.0",
"send": "0.17.1",
"thread-sleep": "2.2.0",
"update-notifier": "3.0.1",
"validator": "11.1.0"
}
}