-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.42 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
48
49
50
51
{
"name": "bahai-indexes",
"type": "module",
"version": "0.14.0",
"description": "Indexes to the Bahá'í Writings in JSON form",
"main": "src/buildFlattenedJSONAndJS.js",
"browserslist": [
"defaults, not op_mini all"
],
"scripts": {
"addBook": "node indexes/addBook.js",
"start": "httpquery --path=indexes/json --debug",
"eslint": "eslint .",
"lint": "npm run eslint --",
"build-books": "node indexes/books.js",
"build": "node src/buildFlattenedJSONAndJS.js",
"parse": "npm run parse-aqdas",
"parse-log": "node parsers/text/log.js",
"parse-aqdas": "node parsers/html/aqdas.js",
"parse-saq": "node parsers/html/saq.js",
"parse-iqan": "node parsers/html/iqan.js",
"test": "npm run eslint && echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@github.com:bahaidev/bahai-indexes.git"
},
"keywords": [
"bahai",
"index"
],
"author": "Brett Zamir",
"contributors": [],
"license": "MIT",
"bugs": "https://github.com/bahaidev/bahai-indexes/issues/",
"homepage": "https://github.com/bahaidev/bahai-indexes#readme",
"dependencies": {
"httpquery": "^0.9.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/eslint-parser": "^7.28.0",
"eslint": "^9.34.0",
"eslint-config-ash-nazg": "^39.0.1",
"handle-node": "^0.5.0",
"jsdom": "^26.1.0"
}
}