forked from Glowstudent777/YouVersion-API-NPM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 KB
/
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
31
32
33
34
35
36
37
38
39
40
{
"name": "@cvyx/bibleapi",
"version": "1.3.0",
"description": "An API that scrapes bible websites to get daily verse, and verses.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"funding": "https://github.com/cvyx/BibleAPI/?sponsor=1",
"dependencies": {
"axios": "1.1.3",
"cheerio": "^1.0.0-rc.12",
"cheerio-select": "2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@types/node": "^18.11.9",
"typescript": "^4.9.3",
"@types/bun": "latest"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run babel && npm run tsc && npm run pack",
"babel": "babel src -d dist --copy-files",
"tsc": "npx tsc",
"pack": "npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cvyx/BibleAPI.git"
},
"keywords": [],
"author": "cvyx",
"license": "MIT",
"bugs": {
"url": "https://github.com/cvyx/BibleAPI/issues"
},
"homepage": "https://github.com/cvyx/BibleAPI#readme"
}