-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "ngsticky",
"version": "1.8.13",
"homepage": "https://github.com/d-oliveros/ngSticky",
"authors": [
"David Oliveros <[email protected]>"
],
"description": "A simple, pure javascript (No jQuery required!) AngularJS directive to make elements stick when scrolling down.",
"main": "lib/sticky.js",
"dependencies": {
"angular": "^1.2.0"
},
"repository": {
"type": "git",
"url": "[email protected]:d-oliveros/ngSticky.git"
},
"keywords": [
"angularjs",
"angular",
"sticky",
"fixed",
"position",
"angular sticky",
"stick windows",
"stick",
"layout"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"engines": {
"node": ">=0.10",
"npm": ">=1.1.59"
},
"scripts": {
"examples": "http-server",
"build": "uglifyjs --compress -o dist/sticky.min.js -- lib/sticky.js"
},
"devDependencies": {
"http-server": "^0.9.0",
"uglify-js": "^2.6.2"
}
}