-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
{
"name": "drag-to-scroll",
"version": "1.2.0",
"description": "Class to use on front end to enable drag with the mouse to scroll a page or a scrollable element.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/SamuelCharpentier/Drag-to-scroll.git"
},
"bugs": {
"url": "https://github.com/SamuelCharpentier/Drag-to-scroll/issues"
},
"homepage": "https://github.com/SamuelCharpentier/Drag-to-scroll#readme",
"keywords": [
"DragToScroll",
"typescript",
"frontend",
"scroll",
"drag",
"mouse",
"scrollable",
"scrollable element",
"drag to scroll",
"drag-to-scroll",
"drag to scroll class",
"drag-to-scroll class",
"drag to scroll element",
"drag-to-scroll element",
"drag to scroll page",
"drag-to-scroll page"
],
"scripts": {
"test": "jest",
"build": "tsup --config tsup-prod.config.ts",
"build:dev": "tsup --config tsup-dev.config.ts",
"start": "npm-run-all --parallel build:dev serve:dev",
"serve:dev": "node dev-server"
},
"author": "Samuel Charpentier",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.3.100",
"@testing-library/dom": "^9.3.4",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.11",
"drag-to-blank": "^1.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.2.0",
"live-server": "^1.1.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"terser": "^5.26.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"wallaby": {
"trace": true
}
}