-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 692 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "mapfile-generator",
"devDependencies": {
"neostandard": "^0.12",
"sass": "^1.97",
"webpack-cli": "^6.0"
},
"scripts": {
"prepublish": "npm run build",
"lint": "eslint resources/javascript/**/*.js *.mjs",
"lint:fix": "eslint --fix resources/javascript/**/*.js *.mjs",
"build": "npm run build:css & npm run build:js",
"build:css": "sass --style=compressed resources/sass/style.scss public/css/style.css",
"build:js": "webpack --config webpack.config.js --mode production",
"watch:js": "webpack --config webpack.config.js --watch --mode development",
"watch:css": "sass --watch resources/sass/style.scss public/css/style.css"
}
}