-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "static-site",
"description": "A simple static site generator",
"version": "1.3.5",
"author": "Paul C Pederson <[email protected]>",
"bugs": {
"url": "https://github.com/paulcpederson/static-site/issues"
},
"devDependencies": {
"rimraf": "^2.6.2",
"shelljs": "^0.6.1",
"standard": "^6.0.4",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"homepage": "https://github.com/paulcpederson/static-site",
"keywords": [
"build",
"html",
"site",
"static"
],
"bin": "bin/static-site.js",
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/paulcpederson/static-site.git"
},
"scripts": {
"test": "standard && tape 'test/**/*.js' | tap-spec"
},
"dependencies": {
"argv-parse": "^1.0.1",
"es6-promise": "^3.3.1",
"glob": "^7.1.2",
"gray-matter": "^2.1.1",
"highlight.js": "^10.0.2",
"markdown-it": "^7.0.1",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"object-assign": "^4.1.1",
"read-data": "^0.3.0",
"swig-extras": "0.0.1",
"swig-templates": "^2.0.3"
}
}