-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.33 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
{
"name": "dattel-client",
"version": "0.8.3",
"description": "The client side of the dattel static site hosting solution.",
"author": "Benjamin Altpeter <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dattel": "./bin/run"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@types/glob": "^7.1.3",
"@types/listr": "^0.14.3",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"globby": "^11.0.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.3.0",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,scss,json}": [
"prettier --write"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-autocomplete": "^0.3.0",
"@oclif/plugin-help": "^3.2.2",
"axios": "^0.21.1",
"chunk-promise": "^1.2.0",
"deep-object-diff": "^1.1.0",
"find-up": "^5.0.0",
"glob": "^7.1.7",
"hasha": "^5.2.2",
"listr": "^0.14.3",
"netlify-redirect-parser": "^3.0.29",
"retry-axios": "^2.4.0"
},
"scripts": {
"build": "rm -rf dist && tsc",
"watch": "tsc -w",
"test": "echo 'TODO: No test specified yet.'",
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn build && oclif-dev readme",
"version": "oclif-dev readme && git add README.md"
},
"files": [
"/dist",
"/bin",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./dist/cli/commands",
"bin": "dattel",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
],
"topics": {
"site": {
"description": "manage (create and delete) sites"
}
}
}
}