-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.37 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.37 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@htmlgoddess/cli",
"description": " HTMLGoddess command line utility",
"version": "0.4.4",
"author": "Jonathan Crockett <joncrockett@gmail.com>",
"private": false,
"bin": {
"htmlgoddess": "./bin/run"
},
"bugs": "https://github.com/jonascript/htmlgoddess/issues",
"dependencies": {
"@htmlgoddess/templates": "^0.4.4",
"@htmlgoddess/webpack-plugin": "^0.4.4",
"@oclif/command": "1.6.1",
"@oclif/config": "1.15.1",
"@oclif/plugin-help": "3.1.0",
"@textlint-rule/textlint-rule-no-dead-link": "3.2.0",
"@webpack-cli/serve": "0.2.0",
"cjs-to-es6": "1.1.1",
"clean-webpack-plugin": "3.0.0",
"cli-ux": "5.4.7",
"command-line-args": "5.1.1",
"copy-webpack-plugin": "6.0.1",
"css-loader": "3.5.3",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"html-beautify-webpack-plugin": "1.0.5",
"html-loader": "1.1.0",
"html-replace-webpack-plugin": "2.5.6",
"html-to-text": "5.1.1",
"html-webpack-plugin": "4.3.0",
"inquirer": "7.3.0",
"isomorphic-git": "1.4.4",
"livereload": "0.9.1",
"mini-css-extract-plugin": "0.9.0",
"ntl": "5.0.0",
"onchange": "7.0.2",
"pa11y": "5.3.0",
"pa11y-reporter-cli": "2.0.0",
"postcss-loader": "3.0.0",
"prettier": "2.0.5",
"pretty": "2.0.0",
"recursive-watch": "1.1.4",
"serve": "11.3.1",
"simple-git": "3.3.0",
"style-loader": "1.2.1",
"textlint": "11.6.3",
"textlint-plugin-html": "0.2.0",
"textlint-rule-ginger": "2.2.1",
"textlint-rule-rousseau": "1.4.6",
"textlint-rule-terminology": "2.1.4",
"tslib": "1.13.0",
"url-loader": "4.1.0",
"wcag-validator": "5.0.0",
"webpack": "4.43.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-fix-style-only-entries": "0.5.0",
"webpack-livereload-plugin": "2.3.0"
},
"htmlgoddess": {
"output": "/docs",
"livereload": true
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"lib"
],
"homepage": "https://github.com/jonascript/htmlgoddess",
"keywords": [
"oclif"
],
"license": "ISC",
"main": "./bin/run",
"oclif": {
"commands": "./lib/commands",
"bin": "htmlgoddess",
"plugins": [
"@oclif/plugin-help"
]
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/jest": "26.0.0",
"axios": "0.19.2",
"git-http-mock-server": "1.2.1",
"html-loader": "1.1.0",
"jest": "26.0.1",
"mock-stdin": "1.0.0",
"rimraf": "3.0.2",
"supertest": "4.0.2",
"ts-jest": "26.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jonascript/htmlgoddess",
"directory": "packages/@htmlgoddess/cli"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "jest --runInBand --detectOpenHandles --verbose --forceExit",
"test:watch": "jest -w",
"version": "oclif-dev readme && git add README.md",
"prettier": "prettier 'src/**/*.ts' '__tests__/**/*.ts' --write",
"prettier:watch": "onchange 'src/**/*.ts' '__tests__/**/*.ts' -- prettier {{changed}} --write"
},
"types": "lib/index.d.ts",
"gitHead": "1428ad252d2c793a2f25112df8c1439060e1277a"
}