-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "alio",
"version": "3.0.1",
"description": "A lightweight pjax library",
"files": [
"dist"
],
"main": "dist/alio.umd.js",
"unpkg": "dist/alio.iife.js",
"jsdelivr": "dist/alio.iife.js",
"module": "./dist/alio.es.js",
"exports": {
".": {
"import": "./dist/alio.es.js",
"require": "./dist/alio.umd.js"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && tsc --emitDeclarationOnly && mv dist/lib dist/types",
"test": "c8 uvu -r esbuild-register lib/__tests__",
"prepare": "is-ci || pnpx husky install",
"typecheck": "tsc --noEmit",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/selfawarestudio/alio.git"
},
"keywords": [
"pjax",
"router",
"history",
"transitions"
],
"author": "Mike Wagz",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfawarestudio/alio/issues"
},
"homepage": "https://github.com/selfawarestudio/alio#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.5",
"@types/sinon": "^10.0.6",
"c8": "^7.10.0",
"commitlint": "^16.0.1",
"esbuild": "^0.14.9",
"esbuild-register": "^3.3.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jsdom": "^19.0.0",
"motion": "^10.7.0",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"sinon": "^12.0.1",
"typescript": "^4.5.4",
"uvu": "^0.5.2",
"vite": "^2.7.9",
"watchlist": "^0.3.1"
},
"dependencies": {
"martha": "^4.0.3",
"smitter": "1.1.1"
}
}