-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
65 lines (65 loc) · 1.6 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
{
"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": "^3.1.1",
"browser-sync": "^2.18.5",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"commander": "^3.0.1",
"fs-extra": "^8.1.0",
"handlebars": "^4.0.6",
"mkdirp": "^0.5.1",
"rimraf": "^3.0.0",
"sharp": "^0.23.0",
"upath": "^1.1.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"docco": "https://github.com/solarsailer/docco.git#ea3aea536562aed574d63904e2c2ab0138f4b40a",
"jest": "^24.9.0",
"mock-fs": "^4.5.0",
"snazzy": "^8.0.0",
"standard": "^11.0.0"
},
"standard": {
"globals": [
"beforeAll",
"afterAll",
"beforeEach",
"afterEach",
"it",
"describe",
"expect"
]
},
"jest": {
"testEnvironment": "node"
}
}