UNPKG

1.44 kBJSONView Raw
1{
2 "name": "htmx.org",
3 "description": "high power tools for html",
4 "keywords": [
5 "AJAX",
6 "HTML"
7 ],
8 "version": "1.9.7",
9 "homepage": "https://htmx.org/",
10 "bugs": {
11 "url": "https://github.com/bigskysoftware/htmx/issues"
12 },
13 "license": "BSD 2-Clause",
14 "files": [
15 "LICENSE",
16 "README.md",
17 "dist/htmx.d.ts",
18 "dist/*.js",
19 "dist/ext/*.js",
20 "dist/*.js.gz",
21 "editors/jetbrains/htmx.web-types.json"
22 ],
23 "main": "dist/htmx.min.js",
24 "types": "dist/htmx.d.ts",
25 "unpkg": "dist/htmx.min.js",
26 "type": "module",
27 "web-types": "editors/jetbrains/htmx.web-types.json",
28 "scripts": {
29 "test": "mocha-chrome test/index.html",
30 "test-types": "tsc --project ./jsconfig.json",
31 "dist": "cp -r src/* dist/ && npm run-script uglify && gzip -9 -k -f dist/htmx.min.js > dist/htmx.min.js.gz && exit",
32 "ws-tests": "cd ./test/ws-sse && node ./server.js",
33 "www": "bash ./scripts/www.sh",
34 "uglify": "uglifyjs -m eval -o dist/htmx.min.js dist/htmx.js"
35 },
36 "repository": {
37 "type": "git",
38 "url": "git+https://github.com/bigskysoftware/htmx.git"
39 },
40 "devDependencies": {
41 "chai": "^4.3.7",
42 "chai-dom": "^1.11.0",
43 "fs-extra": "^9.1.0",
44 "mocha": "^9.2.2",
45 "mocha-chrome": "^2.2.0",
46 "mocha-webdriver-runner": "^0.6.4",
47 "mock-socket": "^9.2.1",
48 "sinon": "^9.2.4",
49 "typescript": "^4.9.5",
50 "uglify-js": "^3.17.4",
51 "ws": "^8.14.2"
52 }
53}