ajquery.js/package.json

55 lines
1.3 KiB
JSON
Raw Normal View History

2021-07-23 10:36:55 +00:00
{
"name": "ajquery",
2021-07-24 06:02:39 +00:00
"version": "2.1.2",
2021-07-23 10:36:55 +00:00
"description": "The fastest, most lightweight, least dependency jQuery alternative",
2024-08-29 23:29:03 +00:00
"main": "ajquery.cjs",
"module": "ajquery.mjs",
"type": "commonjs",
"browser": {
"ajquery.min.cjs": "ajquery.min.js"
},
"exports": {
".": {
"require": "./ajquery.cjs",
"import": "./ajquery.mjs",
"default": "./ajquery.cjs"
}
},
2021-07-24 06:02:39 +00:00
"files": [
2024-08-29 23:29:03 +00:00
"ajquery.js",
"ajquery.min.js",
"ajquery.cjs",
"ajquery.min.cjs",
"ajquery.mjs",
"ajquery.min.mjs"
2021-07-24 06:02:39 +00:00
],
2021-07-23 10:36:55 +00:00
"scripts": {
2021-07-23 11:29:17 +00:00
"benchmark": "node benchmark.js",
2021-07-23 10:36:55 +00:00
"prepare": "npm run build",
2024-08-29 23:29:03 +00:00
"start": "open http://localhost/example.html && caddy file-server --browse --root .",
2021-07-23 10:36:55 +00:00
"prettier": "npx prettier -w '**/*.{js,md,css,html}'",
"build": "npx uglify-js ajquery.js -o ajquery.min.js",
2021-07-23 10:36:55 +00:00
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coolaj86/ajquery.js.git"
},
"keywords": [
"AJQuery",
"jQuery",
"querySelector",
"querySelectorAll",
"CSS3",
"CSS4",
"CSS",
"selector"
],
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/coolaj86/ajquery.js/issues"
},
"homepage": "https://twitter.com/coolaj86/status/1303386788119998464"
}