-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "jessquery",
"type": "module",
"version": "2.4.7",
"description": "Modern JavaScript is pretty good, but typing document.querySelector() is a pain. This is a tiny library that makes DOM manipulation easy. jQuery is around 80kb (30kb gzipped), while this is only around 8kb (3.5kb gzipped). Lots of JSDoc comments so it's self-documenting and works great with TypeScript.",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"jquery",
"javascript",
"typescript",
"JSDoc",
"Dom Manipulation",
"Easy",
"Small",
"Tiny",
"Modern",
"ES6",
"Lightweight",
"Light",
"DOM",
"prototype",
"document",
"querySelector",
"querySelectorAll"
],
"author": "Jesse Pence",
"license": "MPL-2.0",
"homepage": "https://jazzypants.dev",
"repository": {
"type": "git",
"url": "https://github.com/jazzypants1989/jessquery.git"
}
}