-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1019 Bytes
/
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
{
"name": "custom-snap",
"version": "1.1.2",
"description": "A module that allows having both scroll snapping and normal scrolling between sections in your website",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p ./tsconfig.json",
"docs": "webpack",
"watch": "tsc -p ./tsconfig.json --watch",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"scroll",
"scroll-snap",
"typescript",
"browser"
],
"author": "Hasan Mothaffar <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Syrian-Open-Source/custom-snap"
},
"homepage": "https://syrian-open-source.github.io/custom-snap/",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.12.0",
"html-webpack-plugin": "^5.5.0",
"webpack-cli": "^4.9.2"
}
}