-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "cloudcannon-hugo",
"type": "module",
"version": "1.0.11",
"description": "Generates the files necessary for a hugo site to integrate with CloudCannon CMS",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"start": "node src/index.js",
"test": "nyc mocha --recursive --ignore **/integration.test.js",
"test:integration": "nyc mocha **/integration.test.js",
"test:all": "nyc mocha --recursive",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"release:latest": "np",
"release:next": "np prerelease --tag=next"
},
"engines": {
"node": ">=16"
},
"bin": {
"cloudcannon-hugo": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/cloudcannon-hugo.git"
},
"contributors": [
"Nathan Kennedy",
"Ross Phillips"
],
"author": {
"name": "CloudCannon",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudCannon/cloudcannon-hugo/issues"
},
"files": [
"src"
],
"homepage": "https://github.com/CloudCannon/cloudcannon-hugo#readme",
"devDependencies": {
"chai": "^4.3.7",
"deep-equal-in-any-order": "^2.0.0",
"eslint": "^8.28.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.1.0",
"mock-fs": "^5.2.0",
"np": "^8.0.4",
"nyc": "^15.1.0"
},
"dependencies": {
"chalk": "^5.1.2",
"cosmiconfig": "^8.0.0",
"glob": "^8.0.3",
"js-yaml": "^4.1.0",
"meow": "^11.0.0",
"papaparse": "^5.3.1",
"toml": "^3.0.0"
}
}