-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 917 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 917 Bytes
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
{
"name": "@muslims-community/quran",
"version": "1.1.0",
"description": "Simple, offline Quran data package for JavaScript.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./data": "./dist/quran.json"
},
"scripts": {
"build": "node scripts/build.js",
"test": "node test.js"
},
"files": [
"dist/",
"types/",
"README.md",
"LICENSE"
],
"keywords": [
"quran",
"islam",
"arabic",
"tanzil",
"script",
"library"
],
"author": "Muslims Community",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Muslims-Community/quran-data-js.git"
},
"homepage": "https://github.com/Muslims-Community/quran-data-js#readme",
"devDependencies": {
"xml2js": "^0.6.2"
}
}