forked from geosigno/simpleParallax.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "simple-parallax-js",
"version": "5.5.1",
"description": "simpleParallax is a simple JavaScript library that gives your website parallax animations on any images or videos",
"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",
"video",
"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": {
"src/**/*.js": [
"eslint --fix"
]
},
"bugs": {
"url": "https://github.com/geosigno/simpleParallax/issues"
},
"dependencies": {
"html-webpack-plugin": "^4.3.0",
"webpack": "^4.43.0",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.9",
"moment": "^2.26.0",
"prettier": "^2.0.5",
"terser-webpack-plugin": "^3.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-cli": "^3.3.11"
}
}