htmx/package.json
2020-04-26 16:40:35 -07:00

34 lines
784 B
JSON

{
"name": "htmx",
"version": "0.0.1",
"description": "HTML Extensions",
"main": "src/htmx.js",
"scripts": {
"test": "mocha-chrome test/core.html",
"dist": "cp src/htmx.js dist/ && npm run-script uglify && exit",
"uglify": "uglifyjs -m -o dist/htmx.min.js dist/htmx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigskysoftware/htmx.git"
},
"keywords": [
"AJAX",
"HTML"
],
"author": "Carson Gross",
"license": "BSD 2-Clause",
"bugs": {
"url": "https://github.com/bigskysoftware/htmx/issues"
},
"homepage": "https://htmx.org",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"mocha-chrome": "^2.2.0",
"sinon": "^9.0.2",
"uglify-js": "^3.9.1"
},
"dependencies": {}
}