-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 933 Bytes
/
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
{
"name": "hafcaf",
"version": "1.1.0",
"description": "The no-framework SPA solution; when you only want a little javascript in your app.",
"main": "hafcaf.min.js",
"files": [
"hafcaf-barista.js",
"hafcaf-tamper.js"
],
"directories": {
"doc": "docs"
},
"scripts": {
"build-docs": "jsdoc index.js -d docs",
"build-module": "terser index.js -c -m -o hafcaf.min.js",
"build-es5": "terser hafcaf-es5.js -c -m -o hafcaf-es5.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Andrew565/hafcaf.git"
},
"keywords": [
"SPA",
"css",
"navigation",
"routing",
"javascript",
"beginner-friendly"
],
"author": "Andrew Steele",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/Andrew565/hafcaf/issues"
},
"homepage": "https://github.com/Andrew565/hafcaf#readme",
"devDependencies": {
"terser": "^3.17.0"
}
}