-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 948 Bytes
/
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
{
"name": "account",
"version": "1.0.0",
"description": "for account.lib",
"devDependencies": {
"@eslint/js": "^9.11.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"sass": "^1.79.4"
},
"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 $*",
"eslint": "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"
}