-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"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/**/*"
]
},
"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",
"front-matter": "^4.0.2",
"handlebars": "^4.7.7",
"js-yaml": "^4.1.1",
"lodash": "^4.17.21",
"marked": "^4.2.5",
"posthtml": "^0.16.6",
"posthtml-urls": "^1.0.0",
"slug": "^8.2.3",
"turndown": "^7.1.1"
},
"devDependencies": {
"cheerio": "^1.1.2",
"husky": "^8.0.0",
"node-fetch": "^2.7.0",
"nyc": "^15.1.0",
"tap-nyan": "^1.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.7.2"
}
}