-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
47
{
"name": "bahai-reflib-data-server",
"version": "0.12.0",
"author": "Brett Zamir <brettz9@yahoo.com>",
"contributors": [],
"description": "A service and web app for retrieving data out of the Bahá'í Reference Library",
"license": "MIT",
"keywords": [],
"type": "module",
"main": "./src/index.js",
"bin": {
"reflib": "./server.js"
},
"browserslist": [
"defaults, not op_mini all"
],
"scripts": {
"copy": "cp node_modules/uhtml/esm.js public/vendor/uhtml/esm.js",
"build-import-map": "echo 'Might use this to support npm package imports; needs package lock' && npm i && npx importly < package-lock.json > importmap.json",
"start": "./server.js",
"eslint": "eslint .",
"lint": "npm run eslint",
"mocha": "mocha",
"test": "c8 npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahaidev/bahai-reflib-data-server.git"
},
"bugs": {
"url": "https://github.com/bahaidev/bahai-reflib-data-server/issues"
},
"homepage": "https://github.com/bahaidev/bahai-reflib-data-server",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"eslint": "^9.34.0",
"eslint-config-ash-nazg": "39.0.1",
"uhtml": "^3.2.2"
},
"dependencies": {
"bahai-reflib-data": "^0.16.0",
"body-parser": "^2.2.0",
"express": "^5.1.0"
}
}