forked from bigskysoftware/htmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "htmx.org",
"description": "high power tools for html",
"keywords": [
"AJAX",
"HTML"
],
"version": "1.0.0",
"homepage": "https://htmx.org/",
"bugs": {
"url": "https://github.com/bigskysoftware/htmx/issues"
},
"license": "BSD 2-Clause",
"files": [
"LICENSE",
"README.md",
"dist/*.js",
"dist/ext/*.js",
"dist/*.js.gz"
],
"main": "dist/htmx.min.js",
"unpkg": "dist/htmx.min.js",
"scripts": {
"test": "mocha-chrome test/index.html",
"dist": "cp -r src/* dist/ && npm run-script uglify && gzip -k -f dist/htmx.min.js > dist/htmx.min.js.gz && exit",
"www": "node scripts/www.js",
"uglify": "uglifyjs -m eval -o dist/htmx.min.js dist/htmx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bigskysoftware/htmx.git"
},
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"chai": "^4.2.0",
"eleventy-plugin-sass": "^1.0.0",
"fs-extra": "^9.0.0",
"mocha": "^7.1.1",
"mocha-chrome": "^2.2.0",
"sinon": "^9.0.2",
"uglify-js": "^3.9.1"
}
}