-
Notifications
You must be signed in to change notification settings - Fork 824
/
package.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": "headroom.js",
"version": "0.12.0",
"description": "Give your page some headroom. Hide your header until you need it",
"main": "dist/headroom.js",
"files": [
"dist"
],
"scripts": {
"start": "rollup --config --watch & cypress open",
"test": "npm run build && cypress run",
"build": "rollup --config",
"version": "npm run build",
"postversion": "git push origin master --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/WickyNilliams/headroom.js"
},
"keywords": [
"header",
"fixed",
"scroll",
"menu"
],
"author": "Nick Williams",
"homepage": "http://wicky.nillia.ms/headroom.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/WickyNilliams/headroom.js/issues"
},
"devDependencies": {
"cypress": "^3.4.1",
"eslint": "^6.5.0",
"eslint-plugin-cypress": "^2.7.0",
"rollup": "^1.19.4",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-uglify": "^6.0.2"
}
}