forked from ChrisCavs/headsup.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 932 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 932 Bytes
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
{
"name": "headsup.js",
"version": "2.0.0",
"description": "Sticky headers that hide on scroll.",
"main": "src/headsup.js",
"license": "MIT",
"type": "module",
"scripts": {
"test": "standard src/*.js",
"check-lint": "prettier --list-different '**/*.js' && eslint '**/*.js'",
"lint": "prettier --write '**/*.js' && eslint --fix '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrisCavs/headsup.js.git"
},
"eslintConfig": {
"extends": "plugin:@cloudfour/recommended"
},
"prettier": {
"singleQuote": true
},
"keywords": [
"sticky",
"nav",
"header",
"auto-hide",
"hide"
],
"author": {
"name": "Christopher Cavalea",
"email": "chriscavs94@gmail.com",
"url": "http://chriscavs.github.io/"
},
"devDependencies": {
"@cloudfour/eslint-plugin": "^2.0.1",
"eslint": "^5.16.0",
"prettier": "^1.17.1"
}
}