-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
40 lines (40 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
{
"name": "smartscroll",
"version": "2.5.6",
"description": "Scrolljacking jQuery plugin",
"main": "smartscroll.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm run format && npm run minify",
"lint": "eslint smartscroll.js",
"format": "eslint smartscroll.js --fix",
"minify": "uglifyjs smartscroll.js --ie8 --compress --mangle -o smartscroll.min.js"
},
"repository": {
"type": "git",
"url": "[email protected]/d4nyll/smartscroll.git"
},
"keywords": [
"scrolljacking",
"scroll",
"hash",
"jquery",
"jquery-plugin",
"ecosystem:jquery"
],
"author": "Daniel Li <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d4nyll/smartscroll/issues"
},
"homepage": "https://github.com/d4nyll/smartscroll#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"uglify-js": "^3.6.0"
}
}