|
|
{
|
|
|
"name": "simple-parallax-js",
|
|
|
"version": "5.2.0",
|
|
|
"description": "simpleParallax is a simple JavaScript library that gives your website parallax animations on any images",
|
|
|
"homepage": "https://simpleparallax.com/",
|
|
|
"main": "./dist/simpleParallax.min.js",
|
|
|
"types": "./index.d.ts",
|
|
|
"repository": {
|
|
|
"type": "git",
|
|
|
"url": "git+https://github.com/geosigno/simpleParallax.git"
|
|
|
},
|
|
|
"keywords": [
|
|
|
"parallax",
|
|
|
"javascript",
|
|
|
"scroll",
|
|
|
"simple",
|
|
|
"easy",
|
|
|
"fast",
|
|
|
"light",
|
|
|
"image",
|
|
|
"effect",
|
|
|
"vanilla",
|
|
|
"es6"
|
|
|
],
|
|
|
"author": "Geoffrey Signorato <geoffrey.signorato@gmail.com>",
|
|
|
"license": "MIT",
|
|
|
"scripts": {
|
|
|
"start": "webpack-dev-server --mode development --open --port 3000 --hot",
|
|
|
"build": "webpack --mode production",
|
|
|
"format": "prettier --write '**/**.{js,json,html}'",
|
|
|
"lint": "eslint src --ext .js --fix",
|
|
|
"test": "jest"
|
|
|
},
|
|
|
"husky": {
|
|
|
"hooks": {
|
|
|
"pre-commit": "lint-staged"
|
|
|
}
|
|
|
},
|
|
|
"lint-staged": {
|
|
|
"**/**.{json,html}": [
|
|
|
"prettier --write",
|
|
|
"git add"
|
|
|
]
|
|
|
},
|
|
|
"bugs": {
|
|
|
"url": "https://github.com/geosigno/simpleParallax/issues"
|
|
|
},
|
|
|
"dependencies": {
|
|
|
"html-webpack-plugin": "^3.2.0",
|
|
|
"webpack": "^4.41.2",
|
|
|
"webpack-dev-server": "^3.9.0"
|
|
|
},
|
|
|
"devDependencies": {
|
|
|
"@babel/core": "^7.7.4",
|
|
|
"@babel/preset-env": "^7.7.4",
|
|
|
"babel-loader": "^8.0.6",
|
|
|
"eslint": "^6.7.2",
|
|
|
"eslint-config-airbnb-base": "^14.0.0",
|
|
|
"eslint-plugin-import": "^2.18.2",
|
|
|
"eslint-plugin-node": "^10.0.0",
|
|
|
"husky": "^3.1.0",
|
|
|
"jest": "^24.9.0",
|
|
|
"lint-staged": "^9.5.0",
|
|
|
"moment": "^2.24.0",
|
|
|
"prettier": "^1.19.1",
|
|
|
"uglifyjs-webpack-plugin": "^2.2.0",
|
|
|
"webpack-cli": "^3.3.10"
|
|
|
}
|
|
|
}
|