-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 806 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
{
"name": "sass-minimal",
"version": "1.2.3",
"description": "A simple MITs web app",
"type": "module",
"main": "index.js",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@eslint/js": "^10.0.1",
"eslint": "^10.0.3",
"sass": "^1.70.0"
},
"scripts": {
"sync:version": "node scripts/sync-version.js",
"version": "npm run sync:version && git add index.html",
"dev": "npm run sync:version && sass --watch --update --style=expanded assets/scss:assets/css",
"build": "npm run sync:version && sass --no-source-map --style=compressed assets/scss:assets/css",
"test": "playwright test",
"test:ui": "playwright test --ui",
"lint": "eslint assets/js",
"lint:fix": "eslint assets/js --fix"
},
"author": "Sam Glover",
"license": "UNLICENSED"
}