-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 816 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
{
"name": "sqroll",
"version": "1.1.3",
"description": "Another scrolling library",
"main": "dist/sqroll.min.js",
"author": "Nicolás Arias <nicolas@nicolasarias.com>",
"homepage": "https://github.com/ezakto/sqroll",
"repository": {
"type": "git",
"url": "https://github.com/ezakto/sqroll.git"
},
"license": "MIT",
"keywords": [
"scroll",
"scrolling",
"viewport",
"trigger",
"track",
"parallax"
],
"scripts": {
"build": "babel ./sqroll.js -o ./dist/sqroll.js",
"min": "uglifyjs ./dist/sqroll.js -o ./dist/sqroll.min.js --compress --mangle"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"uglify-js": "^3.4.9"
}
}