-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "@furman1331/page-scroller",
"version": "1.1.3",
"description": "Amazing plugin for creating smooth scroll on your website",
"source": "src/index.ts",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js"
}
},
"scripts": {
"dev": "rollup -c ./rollup/rollup.config.js --watch",
"build": "npm run test && rollup -c ./rollup/rollup.config.js",
"build:notest": "rollup -c ./rollup/rollup.config.js",
"test": "jest"
},
"keywords": [
"scroll",
"typescript",
"fullscreen website",
"fullscreen",
"onepage",
"single page"
],
"repository": {
"type": "git",
"url": "https://github.com/Furman1331/page-scroller"
},
"author": "<[email protected]>",
"homepage": "https://github.com/Furman1331/page-scroller",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup-plugin-css-bundle": "^1.0.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}