-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.72 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
63
64
65
66
67
68
69
70
71
72
{
"name": "reseed",
"version": "2.2.3",
"description": "Reseed is an open-source tool for integrating static sites into subpaths.",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"view-report": "nyc --reporter=html mocha",
"ci-test": "nyc --reporter=lcov mocha",
"report-coverage": "codecov",
"lint-autofix": "eslint --fix lib/** config/** test/** application.js",
"lint-code": "eslint lib/** config/** test/** application.js",
"lint": "npm run lint-autofix && npm run lint-code"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/reseed.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/reseed/issues"
},
"homepage": "https://github.com/CloudCannon/reseed#readme",
"keywords": [
"CloudCannon",
"Reseed",
"Subpath",
"href",
"url",
"link"
],
"author": "Nathan Kennedy",
"license": "MIT",
"files": [
"lib",
"cli.js",
"index.js"
],
"bin": {
"reseed": "./index.js"
},
"engines": {
"node": ">=18.17"
},
"dependencies": {
"browser-sync": "^3.0.3",
"chalk": "^4.1.0",
"cheerio": "1.0.0-rc.12",
"chokidar": "^3.4.2",
"cssurl": "^1.3.0",
"del": "^6.0.0",
"fancy-log": "^1.3.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"meow": "^7.1.1",
"path": "^0.12.7",
"readline-sync": "^1.4.10",
"srcset": "^3.0.0",
"util": "^0.12.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-cloudcannon": "^1.0.0-rc5",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^10.8.2",
"mock-fs": "^4.13.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^9.2.0"
}
}