-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "@ackret/js.lib",
"version": "0.0.59",
"description": "A javascript library",
"main": "types/index.js",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.7.4",
"jasmine": "^5.3.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"scripts": {
"test": "jasmine",
"cover": "npx nyc@latest npm run test | tee coverage.txt",
"cover-html": "npx nyc@latest --reporter html jasmine && open coverage/index.html",
"build": "tsc"
},
"keywords": [
"library",
"javascript",
"js",
"lib",
"base64",
"string",
"number",
"array",
"object",
"date",
"time",
"utility",
"function",
"method",
"class",
"module"
],
"author": "Anubhav Saini <[email protected]> (iamanubhavsaini)",
"homepage": "https://github.com/ackret/js.lib",
"readme": "https://github.com/ackret/js.lib/blob/main/README.md",
"issues": "https://github.com/ackret/js.lib/issues",
"license": "MIT",
"moduleResolution": "nodenext",
"types": "types/index.d.ts",
"dependencies": {
"jsdom": "^25.0.1"
}
}