-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.28 KB
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
66
67
68
69
{
"name": "select",
"version": "0.9.0",
"description": "A small jQuery-like library for DOM+SVG manipulation",
"type": "module",
"main": "./src/js/select/index.js",
"exports": {
".": "./src/js/select/index.js",
"./state": "./src/js/select/state/index.js",
"./state/cells": "./src/js/select/state/cells.js",
"./state/browser": "./src/js/select/state/browser.js",
"./state/routing": "./src/js/select/state/routing.js",
"./state/*": "./src/js/select/state/*",
"./ui": "./src/js/select/ui/index.js",
"./ui/components": "./src/js/select/ui/components.js",
"./ui/*": "./src/js/select/ui/*",
"./features": "./src/js/select/features/index.js",
"./features/interaction": "./src/js/select/features/interaction/index.js",
"./features/query": "./src/js/select/features/query.js",
"./features/*": "./src/js/select/features/*",
"./utils": "./src/js/select/utils/index.js",
"./utils/*": "./src/js/select/utils/*",
"./src/js/select/*": "./src/js/select/*",
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"files": [
"src/js/select/",
"dist/",
"README.md",
"LICENSE.md"
],
"homepage": "https://github.com/sebastien/select.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sebastien/select.js.git"
},
"keywords": [
"DOM",
"Query",
"Library",
"Selection"
],
"author": "Sébastien Pierre <sebastien.pierre@gmail.com> (http://www.sebastienpierre.me/)",
"license": "BSD",
"bugs": {
"url": "https://github.com/sebastien/select.js/issues"
},
"scripts": {
"build": "make dist",
"test": "bun test",
"test:dist": "make dist && REQUIRE_DIST=1 bun test tests/dist-exports.test.js tests/int-examples.test.ts",
"test:int": "bun test tests/int-examples.test.ts",
"test:int:update": "UPDATE_FIXTURES=1 bun test tests/int-examples.test.ts",
"test:package": "node scripts/test-package.mjs",
"bench:inspector": "node scripts/bench-inspector.mjs",
"bench:inspector:happy": "node benchmarks/inspector/run-compare.mjs",
"bench:inspector:chrome": "node benchmarks/inspector/run-node.cjs",
"prepack": "make dist && bun run test:dist && bun run test:package"
},
"devDependencies": {
"eslint": "^10.6.0",
"happy-dom": "^20.10.6",
"jsdom": "^29.1.1",
"playwright": "^1.61.1",
"preact": "^10.29.7",
"solid-js": "^1.9.14"
}
}