-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "asciidoctor-live",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"eslint": "eslint 'src/**/*.js' --ignore-pattern 'src/lib/**/*.js'",
"eslint-fix": "eslint --fix 'src/**/*.js' --ignore-pattern 'src/lib/**/*.js'",
"prettier": "prettier --check 'public/**/*.css' '!public/styles/doc_css/**/*.css' 'public/**/*.html'",
"prettier-fix": "prettier --write 'public/**/*.css' '!public/styles/doc_css/**/*.css' 'public/**/*.html'"
},
"author": "",
"license": "ISC",
"dependencies": {
"asciidoctor": "3.0.4",
"opal-compiler": "3.0.0"
},
"description": "",
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prettier": "^5.1.1",
"html-webpack-plugin": "^5.5.4",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"prettier-plugin-css-order": "^2.0.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}