-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.55 KB
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
{
"name": "presskit",
"version": "0.13.0",
"description": "Re-implementation of presskit() as a static site generator",
"license": "MIT",
"repository": "pixelnest/presskit.html",
"author": {
"name": "Pixelnest Studio",
"url": "https://pixelnest.io/"
},
"keywords": [
"presskit",
"static site generator"
],
"homepage": "https://github.com/pixelnest/presskit.html#readme",
"bugs": "https://github.com/pixelnest/presskit.html/issues",
"main": "lib/index.js",
"bin": {
"presskit": "bin/presskit"
},
"scripts": {
"start": "node bin/presskit build --watch --dev data",
"build": "node bin/presskit build data",
"test": "standard | snazzy && jest",
"tester": "jest --watch",
"docs": "./documentation",
"docs:example": "node bin/presskit build -DLM -o docs/example data"
},
"dependencies": {
"archiver": "^7.0.1",
"browser-sync": "^3.0.4",
"camelcase": "^6.3.0",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"handlebars": "^4.7.8",
"sharp": "^0.33.0",
"upath": "^2.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"docco": "https://github.com/solarsailer/docco.git#ea3aea536562aed574d63904e2c2ab0138f4b40a",
"jest": "^29.0.0",
"mock-fs": "^5.2.0",
"snazzy": "^8.0.0",
"standard": "^17.1.0"
},
"standard": {
"globals": [
"beforeAll",
"afterAll",
"beforeEach",
"afterEach",
"it",
"describe",
"expect"
]
},
"jest": {
"testEnvironment": "node"
}
}