-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.7 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
64
65
{
"name": "writ-cms",
"version": "0.30.0",
"description": "Simple static site generator",
"main": "src/ssg/index.js",
"bin": {
"writ": "src/cli/bin"
},
"scripts": {
"start": "node src/ssg",
"hookup": "husky install",
"tape": "tape \"src/**/*.spec.js\" \"src/ssg/e2e-tests/**/*.test.js\" | tap-nyan",
"tape:ci": "tape \"src/**/*.spec.js\" \"src/ssg/e2e-tests/**/*.test.js\" | tap-spec",
"test": "nyc --reporter=text-summary npm run tape",
"test:ci": "nyc --reporter=lcov npm run tape:ci",
"test:watch": "nodemon --watch src --ext js,hbs --exec npm run tape"
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.spec.js",
"src/old-tests/**/*",
"src/e2e-tests/**/*",
"src/**/vendor/**/*"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptype/writ-cms.git"
},
"homepage": "https://github.com/scriptype/writ-cms#readme",
"dependencies": {
"body-parser": "^1.20.1",
"browser-sync": "^2.27.11",
"express": "^4.18.2",
"filenamify": "^7.0.1",
"gray-matter": "github:scriptype/gray-matter",
"handlebars": "^4.7.7",
"lodash": "^4.17.21",
"marked": "^4.2.5",
"mime-types": "^3.0.2",
"multer": "^2.2.0",
"posthtml": "^0.16.6",
"posthtml-urls": "^1.0.0",
"rimraf": "^6.1.3",
"slug": "^8.2.3",
"unused-filename": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"cheerio": "^1.1.2",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"husky": "^8.0.0",
"morgan": "^1.11.0",
"node-fetch": "^2.7.0",
"nyc": "^18.0.0",
"tap-nyan": "^1.1.0",
"tap-spec": "^2.2.2",
"tape": "^5.7.2"
}
}