-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 965 Bytes
/
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": "@jgarber/cashcash",
"version": "5.0.3",
"description": "A very small DOM library inspired by jQuery.",
"keywords": [
"dom",
"dom-library",
"dom-selection",
"javascript",
"jquery",
"queryselectorall"
],
"homepage": "https://github.com/jgarber623/CashCash",
"bugs": "https://github.com/jgarber623/CashCash/issues",
"license": "MIT",
"author": "Jason Garber <[email protected]> (https://sixtwothree.org)",
"type": "module",
"files": [
"example/*",
"index.js"
],
"exports": "./index.js",
"directories": {
"example": "example"
},
"repository": "https://github.com/jgarber623/CashCash",
"scripts": {
"start": "npx http-server .",
"test": "NODE_V8_COVERAGE=coverage node --experimental-test-coverage --test"
},
"devDependencies": {
"jsdom": "^25.0.1"
},
"engines": {
"node": ">=18.8"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}