-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "smoothify",
"version": "0.0.5",
"description": "Scroll gracefully with your mousewheel",
"main": "dist/smoothify.min.js",
"webpack": "smoothify.webpack.js",
"repository": {
"type": "git",
"url": "https://github.com/homerjam/smoothify"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "watchify smoothify.browserify.js -v -d -o dist/smoothify.js -t babelify --presets es2015",
"build": "browserify smoothify.browserify.js -v -t babelify --presets es2015 | uglifyjs -cm > dist/smoothify.min.js",
"webpack": "webpack -p smoothify.webpack.js dist/smoothify.pkgd.min.js"
},
"author": "Homerjam <[email protected]>",
"license": "MIT",
"dependencies": {
"gsap": "^1.18.5",
"hamsterjs": "^1.1.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"expose-loader": "^0.7.1",
"imports-loader": "^0.6.5",
"webpack": "^1.13.1"
}
}