-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
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
44
45
46
47
48
49
50
51
{
"name": "leviroutes",
"version": "1.0.0",
"description": "A simple lightweight routes framework for hooking in to HTML5 history",
"type": "module",
"main": "./src/routes.js",
"module": "./src/routes.js",
"browser": "./dist/routes.min.js",
"exports": {
".": {
"import": "./src/routes.js",
"browser": "./dist/routes.min.js"
}
},
"scripts": {
"test": "jasmine",
"build": "npm run build:min",
"build:min": "terser src/routes.js -o dist/routes.min.js -c -m --comments false",
"prepublishOnly": "npm run build"
},
"keywords": [
"router",
"routes",
"html5",
"history",
"pushstate",
"spa",
"single-page-application"
],
"author": "Paul Kinlan",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/PaulKinlan/leviroutes.git"
},
"bugs": {
"url": "https://github.com/PaulKinlan/leviroutes/issues"
},
"homepage": "https://github.com/PaulKinlan/leviroutes#readme",
"devDependencies": {
"jasmine": "^5.1.0",
"jsdom": "^23.0.0",
"terser": "^5.27.0"
},
"files": [
"src/",
"dist/",
"README.md",
"LICENCE"
]
}