-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.53 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
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
{
"name": "@quranjs/api",
"description": "A library for fetching quran data from the quran.com API.",
"author": "Ahmed Riad <me@ar1.dev> (https://ar1.dev)",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"files": [
"dist",
"src"
],
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"test": "vitest run",
"test:dev": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/** test/** mocks/**",
"prepare": "husky install",
"size": "size-limit",
"analyze": "size-limit --why"
},
"dependencies": {
"humps": "^2.0.1"
},
"devDependencies": {
"cross-fetch": "^3.1.5",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/humps": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitest/coverage-c8": "^0.24.4",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-check": "^3.3.0",
"husky": "^7.0.4",
"msw": "^0.39.2",
"prettier": "^2.7.1",
"rollup-plugin-analyzer": "^4.0.0",
"size-limit": "^7.0.8",
"tslib": "^2.3.1",
"tsup": "^6.3.0",
"typescript": "^4.6.2",
"vitest": "^0.24.4"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "15 KB"
},
{
"path": "dist/index.mjs",
"limit": "15 KB"
}
],
"engines": {
"node": ">=12"
}
}