-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "search.application",
"version": "1.0.0",
"description": "Boilerplate code for starting a ruby project with docker / docker-compose",
"main": "index.js",
"type": "module",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "npm run build:css && npm run build:js",
"build:css": "sass $* assets/styles:public/styles --style=compressed",
"build:js": "npm run lint && npx esbuild \"assets/scripts/**/scripts.js\" --entry-names=[dir]/[name] --outbase=assets/scripts --bundle --minify --outdir=public/scripts $*",
"lint": "npx eslint eslint.config.js assets/scripts/ test/ $*",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint && npx mocha --require ./test/setup.js --recursive",
"watch:css": "npm run build:css -- --watch",
"watch:js": "npm run build:js -- --watch=forever"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlibrary/search.application.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mlibrary/search.application/issues"
},
"homepage": "https://github.com/mlibrary/search.application#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"chai": "^6.2.2",
"esbuild": "^0.28.0",
"eslint": "^10.3.0",
"eslint-plugin-mocha": "^11.2.0",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"mocha": "^11.7.5",
"sass": "^1.99.0",
"sinon": "^21.1.2"
},
"dependencies": {
"citeproc": "^2.4.63"
}
}