-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
119 lines (119 loc) · 3.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "pushin",
"description": "A javascript plugin to attach a 'dolly' or 'push-in' effect to a div element when user scrolls.",
"version": "6.0.1",
"sideEffects": true,
"module": "dist/esm/pushin.js",
"main": "dist/umd/pushin.js",
"typings": "dist/esm/index.d.ts",
"unpkg": "dist/umd/pushin.min.js",
"jsdelivr": "dist/umd/pushin.min.js",
"files": [
"dist",
"LICENSE",
"README.md",
"src"
],
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"husky": "husky",
"jest": "jest",
"cross-env": "cross-env",
"lint-staged": "lint-staged",
"lint": "eslint --cache src/*.ts",
"build": "rollup -c --bundleConfigAsCjs",
"start": "rollup -cw --bundleConfigAsCjs",
"test:watch": "jest --watch",
"coverage": "jest --coverage && open coverage/lcov-report/index.html -a 'Google Chrome'",
"test": "jest --run-in-band",
"prepack": "clean-package",
"postpack": "clean-package restore",
"postinstall": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"clean-package": {
"remove": [
"scripts",
"devDependencies",
"clean-package",
"prettier",
"lint-staged"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nateplusplus/pushin.git"
},
"keywords": [
"parallax",
"zoom",
"push-in",
"movement",
"motion",
"effect"
],
"author": "Nathan Blair <[email protected]> (https://natehub.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nateplusplus/pushin/issues"
},
"homepage": "https://pushinjs.com",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^7.2.3",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-mdx-gfm": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/react-webpack5": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^5.18.0",
"babel-loader": "^9.1.2",
"clean-css": "^5.3.0",
"clean-package": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"jest": "^29.5.0",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.6.1",
"react": "^18.2.0",
"react-docgen-typescript-plugin": "^1.0.5",
"react-dom": "^18.2.0",
"rollup": "3.21.7",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-terser": "^7.0.2",
"storybook": "^7.2.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^5.0.2"
},
"prettier": {
"endOfLine": "lf",
"singleQuote": true,
"arrowParens": "avoid",
"bracketSpacing": true
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write"
]
}
}