-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.06 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "scripture-guide",
"version": "1.0.85",
"description": "A utility for biblical and scripture reference parsing that enables structured queries based on strings of traditional scripture references (e.g. John 3:16). ",
"main": "dist/scriptures.cjs",
"module": "dist/scriptures.mjs",
"types": "dist/scriptures.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/scriptures.d.ts",
"import": "./dist/scriptures.mjs",
"require": "./dist/scriptures.cjs"
}
},
"scripts": {
"start": "node test/test.mjs",
"test": "node test/test.mjs",
"build": "node build/build.mjs",
"embed": "node build/build.mjs",
"generate-coc-mapping": "node build/generate-coc-mapping.cjs",
"prepublishOnly": "npm version patch && npm run build",
"test:jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:critical": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern='critical\\.test\\.js$'",
"test:edge": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern='edge-cases\\.test\\.js$'",
"test:known-issues": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testPathPattern='known-issues\\.test\\.js$'",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"author": "",
"license": "ISC",
"homepage": "https://scripture.guide",
"repository": {
"type": "git",
"url": "git://github.com/kckern/ScriptureGuideUtils.git"
},
"keywords": [
"bible",
"old testament",
"new testament",
"scripture",
"reference",
"parsing",
"query",
"search",
"structured",
"string",
"lds",
"book of mormon",
"doctrine and covenants",
"pearl of great price"
],
"files": [
"scriptures.mjs",
"scriptures.cjs",
"scriptures.d.ts"
],
"devDependencies": {
"esbuild": "^0.27.2",
"glob": "^13.0.0",
"jest": "^30.2.0",
"js-yaml": "^4.1.1"
},
"dependencies": {
"dotenv": "^17.2.3",
"mysql2": "^3.16.0"
}
}