-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@cloudcannon/reader",
"type": "module",
"version": "1.1.5",
"description": "Parses config, files and folder structures to create a JSON file with information about sites made with any static site generator.",
"keywords": [
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/reader#readme",
"repository": {
"type": "git",
"url": "https://github.com/CloudCannon/reader.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/reader/issues",
"email": "support@cloudcannon.com"
},
"main": "src/index.js",
"scripts": {
"test": "ava",
"test:watch": "ava --watch --verbose",
"test:coverage": "c8 --all ava",
"lint": "eslint src",
"release:latest": "npx np",
"release:prepatch": "npx np prepatch --tag=next",
"release:preminor": "npx np preminor --tag=next",
"release:premajor": "npx np premajor --tag=next"
},
"bin": {
"cloudcannon-reader": "src/index.js"
},
"files": [
"src/**/*.js"
],
"author": "CloudCannon <support@cloudcannon.com>",
"license": "ISC",
"devDependencies": {
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "^8.34.0",
"mockdate": "^3.0.5"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.0",
"chalk": "^5.2.0",
"cosmiconfig": "^8.0.0",
"fdir": "^6.0.1",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"meow": "^11.0.0",
"papaparse": "^5.3.2",
"picomatch": "^2.3.1",
"properties": "^1.2.1",
"toml": "^3.0.0"
}
}