-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.8 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
{
"name": "mousecase",
"version": "3.0.0",
"description": "Mousecase is a JavaScript utility supporting touch-like horizontal scrolling with a mouse!",
"main": "dist/mousecase.js",
"module": "dist/mousecase.es.js",
"unpkg": "dist/mousecase.min.js",
"types": "dist/mousecase.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup --config rollup.config.ts",
"eslint": "eslint src --ext .ts --fix",
"eslint:ci": "eslint src --ext .ts",
"prepush": "pnpm run build && pnpm test && pnpm run eslint && pnpm run prettier",
"prepublishOnly": "pnpm run prepush",
"prettier": "prettier -c .prettierrc 'src/**/*.ts' --write",
"start": "pnpm install",
"test": "vitest run"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"codecov": "^3.8.3",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^9.0.0",
"happy-dom": "^10.3.2",
"husky": "^8.0.1",
"prettier": "^3.0.3",
"rollup": "^3.26.3",
"rollup-plugin-uglify": "6.0.4",
"tslib": "^2.4.0",
"tsutils": "^3.21.0",
"typescript": "^5.3.2",
"vite": "^4.4.2",
"vitest": "^1.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/mousecase.git"
},
"keywords": [
"pulley",
"mousedrag",
"mouse",
"pull",
"scroll",
"scrolling",
"mousescroll"
],
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yowainwright/mousecase/issues"
},
"homepage": "https://github.com/yowainwright/mousecase#readme"
}