-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "@cloudcannon/gadget",
"type": "module",
"version": "0.0.0",
"description": "Inpects a list of files to create configuration for the CloudCannon CMS.",
"keywords": [
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/gadget#readme",
"repository": {
"type": "git",
"url": "https://github.com/CloudCannon/gadget.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/gadget/issues",
"email": "[email protected]"
},
"main": "src/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc --emitDeclarationOnly",
"test": "ava",
"test:watch": "ava --watch --verbose",
"test:coverage": "c8 --all --src src ava",
"lint": "npm run lint:eslint && npm run lint:tsc && npm run lint:format",
"lint:eslint": "eslint src",
"lint:tsc": "tsc --noEmit",
"lint:format": "npx prettier . -c",
"fix:format": "npx prettier . -w"
},
"author": "CloudCannon <[email protected]>",
"devDependencies": {
"@cloudcannon/configuration-types": "^0.0.16",
"@types/he": "^1.2.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.5.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^9.10.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@sindresorhus/slugify": "^2.2.1",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"leven": "^4.0.0",
"titleize": "^4.0.0"
}
}