-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.15 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
{
"name": "@gimmick/scroll-spy",
"version": "0.0.1",
"description": "A class to setup a scroll observer on an element and respond to its position.",
"main": "dist/scrollspy.cjs.js",
"files": [
"dist/*"
],
"scripts": {
"dev": "rollup --config rollup.config.js --environment NODE_ENV:development --sourcemap",
"build": "rollup --config rollup.config.js --environment NODE_ENV:production",
"watch": "rollup --config rollup.config.js --watch --sourcemap",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/william-lindner/scroll-spy.git"
},
"author": "William Lindner",
"license": "MIT",
"bugs": {
"url": "https://github.com/william-lindner/scroll-spy/issues"
},
"homepage": "https://github.com/william-lindner/scroll-spy#readme",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"rollup": "^2.56.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2"
}
}