-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "scroll-polyfill",
"version": "1.0.1",
"description": "A scroll method and options polyfill",
"repository": "ambar/scroll-polyfill",
"license": "MIT",
"source": "index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prepare": "npm test && npm run build",
"start": "vite --root examples",
"prebuild": "rm -rf dist",
"build": "rollup -c && cd auto && yarn build",
"lint": "recommended",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --notify"
},
"files": [
"auto/package.json",
"auto/dist",
"dist"
],
"jest": {
"preset": "es-jest",
"testEnvironment": "jsdom"
},
"devDependencies": {
"@emotion/react": "^11.4.1",
"@types/jest": "^27.0.1",
"@vitejs/plugin-react": "^1.0.1",
"es-jest": "^1.3.0",
"jest": "^27.1.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"recommended": "^0.0.6",
"rollup": "^2.56.3",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.3",
"vite": "^2.6.2"
},
"dependencies": {
"compute-scroll-into-view": "^1.0.13",
"wobble": "^1.5.1"
}
}