forked from wagerfield/parallax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.6 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
49
50
51
52
53
54
{
"name": "parallax-js",
"description": "Parallax Engine that reacts to the orientation of a smart device.",
"version": "3.0.0",
"license": "MIT",
"main": "dist/parallax.js",
"homepage": "http://wagerfield.github.io/parallax/",
"author": "Matthew Wagerfield <[email protected]>, René Roth <[email protected]>",
"directories": {
"example": "examples"
},
"scripts": {
"install": "npm run build",
"build": "rm -rf dist && mkdir dist && browserify src/parallax.js --standalone Parallax -o dist/parallax.js && babel dist/parallax.js --no-babelrc --presets=es2015 --out-file dist/parallax.js && uglifyjs dist/parallax.js -o dist/parallax.min.js --source-map dist/parallax.min.js.map -p relative"
},
"repository": {
"type": "git",
"url": "git://github.com/wagerfield/parallax.git"
},
"keywords": [
"parallax",
"gyroscope",
"jquery",
"javascript",
"library"
],
"bugs": {
"url": "https://github.com/wagerfield/parallax/issues"
},
"devDependencies": {
"autoprefixer": "^6.7.2",
"babelify": "^7.3.0",
"browser-sync": "^2.18.7",
"gulp": "^3.9.1",
"gulp-postcss": "^6.3.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.1",
"gulp-util": "^3.0.8",
"node-notifier": "^5.0.2",
"rimraf": "^2.5.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.0.0",
"object-assign": "^4.1.1",
"raf": "^3.3.0",
"uglify-js": "^2.7.5"
}
}