-
Notifications
You must be signed in to change notification settings - Fork 343
/
package.json
81 lines (81 loc) · 2.24 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
{
"name": "harp",
"version": "0.46.1",
"description": "Static Web Server/Generator/Bundler",
"author": "Brock Whitten <[email protected]>",
"contributors": [
"Brock Whitten <[email protected]>",
"Rob Ellis <[email protected]>",
"Jorge Pedret <[email protected]>",
"Michael Brooks <[email protected]>",
"Tommy-Carlos Williams <[email protected]>",
"Darryl Pogue <[email protected]>",
"Boris Mann <[email protected]>",
"Kenneth Ormandy <[email protected]>",
"Keith Yao <[email protected]>",
"Eric Drechsel <[email protected]>",
"Andrew Hobden <[email protected]>",
"Max Melentiev <[email protected]>",
"Remy Sharp <[email protected]>",
"Zeke Sikelianos <[email protected]>",
"Marc Knaup <[email protected]>",
"Jurgen Van de Moere <[email protected]>",
"Marco Emrich <[email protected]>",
"Roger K <[email protected]>",
"Claus Colloseus <[email protected]>",
"mannyluvstacos <[email protected]>",
"Marcos Lopez C <[email protected]>"
],
"keywords": [
"static web server",
"static site generator",
"sass",
"markdown",
"jade",
"ejs",
"cjs",
"jsx"
],
"homepage": "http://harpjs.com",
"bugs": "http://github.com/sintaxi/harp/issues",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/sintaxi/harp.git"
},
"dependencies": {
"@colors/colors": "1.5.0",
"async": "0.2.9",
"basic-auth": "2.0.1",
"boxt": "1.1.2",
"connect": "3.7.0",
"envy-json": "0.2.1",
"fs-extra": "10.1.0",
"human-readable-numbers": "0.9.5",
"mime-types": "2.1.35",
"minimist": "1.2.6",
"on-finished": "^2.4.1",
"parseurl": "1.3.3",
"pause": "0.1.0",
"send": "0.18.0",
"terraform": "1.22.1"
},
"devDependencies": {
"axios": "0.27.2",
"mocha": "10.0.0",
"should": "3.3.2"
},
"scripts": {
"prepare": "git config core.hooksPath ./hooks",
"test": "mocha --reporter spec -t 4000",
"test:fallbacks": "mocha test/fallbacks.js -t 3000",
"test:helpers": "mocha test/helpers.js -t 3000"
},
"license": "MIT",
"preferGlobal": true,
"readmeFilename": "README.md",
"bin": "./bin/harp",
"engines": {
"node": ">=6.x"
}
}