-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 946 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 946 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
29
30
{
"name": "account",
"version": "1.0.0",
"description": "for account.lib",
"devDependencies": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"sass": "^1.97.3"
},
"scripts": {
"build": "npm run build-css && npm run build-js",
"build-css": "npx sass css:public/bundles --style=compressed",
"build-js": "npx eslint js/*.js && npx esbuild --bundle --sourcemap --minify js/*.js --outdir=public/bundles --out-extension:.js=.bundle.js --outbase=js $*",
"lint": "npx eslint js/*.js",
"watch-css": "npm run build-css -- --watch",
"watch-js": "npm run build-js -- --watch=forever"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlibrary/account.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mlibrary/account/issues"
},
"homepage": "https://github.com/mlibrary/account#readme"
}