-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 913 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 913 Bytes
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
{
"name": "majiang",
"version": "1.0.0",
"description": "Majiang JS app for practising the game.",
"author": "Niklas Dougherty",
"license": "CC-BY-SA-4.0",
"keywords": [],
"scripts": {
"test": "echo \"Implement later\" && exit 0",
"start": "http-server .",
"posttest": "npm run eslint && npm run jshint && npm run stylelint",
"eslint": "eslint",
"eslint:fix": "eslint --fix",
"stylelint": "stylelint \"**/*.{css,scss}\"",
"stylelint:fix": "stylelint --fix \"**/*.css\"",
"style": "sass base.scss style.css --no-source-map",
"style-min": "sass base.scss style.min.css --no-source-map --style compressed"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"eslint": "^9.32.0",
"postcss": "^8.5.6",
"sass": "^1.89.2",
"stylelint": "^16.23.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^39.0.0"
}
}