-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "@cloudcannon/filer",
"type": "module",
"version": "0.0.3",
"description": "Provides an API for accessing parsed file content in a collection-like file structure.",
"keywords": [
"files",
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/filer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/filer.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/filer/issues",
"email": "[email protected]"
},
"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:next": "npx np prerelease --tag=next"
},
"bin": {
"cloudcannon-filer": "src/index.js"
},
"files": [
"src/**/*.js"
],
"author": "CloudCannon <[email protected]>",
"license": "MIT",
"devDependencies": {
"ava": "^5.1.0",
"c8": "^7.11.0",
"eslint": "^8.12.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"gray-matter": "^4.0.3",
"markdown-it": "^13.0.1"
},
"directories": {
"test": "tests"
}
}