-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.17 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
{
"name": "select-dom",
"version": "9.2.0",
"description": "Extra lightweight DOM selector helper",
"keywords": [
"alternative",
"css",
"dom",
"elements",
"jquery",
"querySelector",
"querySelectorAll",
"selector"
],
"repository": "fregante/select-dom",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"type": "module",
"exports": {
".": "./index.js",
"./strict.js": "./strict.js"
},
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"strict.js",
"strict.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "tsc && tsd && xo && npm run test:tape",
"test:tape": "browserify -p esmify test.js | tape-run",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser"
]
},
"dependencies": {
"typed-query-selector": "^2.11.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"tape": "^5.7.0",
"tape-run": "^11.0.0",
"tsd": "^0.29.0",
"typescript": "^5.2.2",
"xo": "^0.56.0"
},
"engines": {
"node": ">=16"
}
}