-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.67 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "martha",
"version": "5.1.0",
"description": "🍑 A tiny collection of convenient JavaScript utilities.",
"type": "module",
"files": [
"dist"
],
"main": "./dist/martha.umd.cjs",
"module": "./dist/martha.js",
"exports": {
".": {
"import": "./dist/martha.js",
"require": "./dist/martha.umd.cjs"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "watchlist lib -- pnpm test",
"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/martha.git"
},
"keywords": [
"utilities",
"helpers",
"dom",
"math",
"events",
"lerp"
],
"author": "Mike Wagz",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfawarestudio/martha/issues"
},
"homepage": "https://github.com/selfawarestudio/martha#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",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"sinon": "^12.0.1",
"typescript": "^4.5.4",
"uvu": "^0.5.2",
"vite": "^4.4.9",
"watchlist": "^0.3.1"
}
}