-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@swup/cli",
"version": "5.0.3",
"description": "Swup CLI for plugin development and site validation",
"type": "module",
"author": {
"name": "Georgy Marchuk",
"email": "[email protected]",
"url": "https://gmrchk.com/"
},
"bin": {
"swup": "./bin/run.js"
},
"homepage": "https://github.com/swup/cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "swup/cli",
"files": [
"/bin",
"/dist",
"/package-lock.json",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^3.0.0-beta.13",
"@oclif/plugin-help": "^5.0.0",
"@swup/browserslist-config": "^1.0.0",
"@swup/prettier-config": "^1.0.0",
"chalk": "^4.0.0",
"cosmiconfig": "^8.3.6",
"crawler": "^1.4.0",
"enquirer": "^2.4.1",
"listr2": "^6.6.1",
"lodash-es": "^4.17.21",
"microbundle": "^0.15.1",
"playwright": "^1.38.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"shelljs-live": "^0.0.5",
"typescript": "^5.2.2"
},
"devDependencies": {
"@oclif/test": "^2.5.6",
"@types/chai": "^4.3.6",
"@types/crawler": "^1.2.3",
"@types/lodash-es": "^4.17.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.7.0",
"@types/shelljs": "^0.8.12",
"chai": "^4.0.0",
"eslint": "^8.50.0",
"eslint-config-oclif": "^5.0.0",
"eslint-config-oclif-typescript": "^2.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"oclif": "^3.17.1",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.6.2"
},
"oclif": {
"bin": "swup",
"dirname": "swup",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": ":",
"topics": {
"package": {
"description": "Bundle, lint, and develop packages"
}
},
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "npm run build && oclif readme && git add README.md"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/swup/cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts",
"prettier": "@swup/prettier-config"
}