-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "fixiejs",
"version": "2.0.2",
"main": "dist/fixie.js",
"types": "dist/fixie.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepublish": "yarn build",
"rollup": "rollup -c >dist/fixie.min.js",
"type:check": "tsc --noEmit"
},
"description": "Utility to fix elements vertically as the page scrolls. Configurable, reusable.",
"repository": "[email protected]:ndp/fixie.git",
"author": "Andrew Peterson <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"jquery",
"plugin",
"conditional fixed placement",
"pin",
"vertical scroll",
"parallax",
"jquery-plugin"
],
"bugs": "https://github.com/ndp/fixie/issues",
"homepage": "https://github.com/ndp/fixie",
"docs": "https://github.com/ndp/fixie",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"rollup": "^2.55.0",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
}
}