-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·71 lines (71 loc) · 1.84 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
{
"name": "universal-tilt.js",
"version": "2.0.6",
"description": "Parallax tilt effect library",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/universal-tilt.min.js",
"scripts": {
"release": "npm run prettier && npm run lint && npm run build:dev && npm run build",
"build": "webpack --env build",
"build:dev": "webpack --env dev",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:dev": "npm run build:dev -- --watch",
"watch:test": "npm run test -- --watch",
"lint": "eslint src --fix",
"prettier": "prettier --write 'src/**/*.js'",
"deploy": "gh-pages -d demo/build"
},
"repository": {
"type": "git",
"url": "https://github.com/JB1905/universal-tilt.js.git"
},
"keywords": [
"tilt",
"JavaScript",
"jQuery",
"gyroscope",
"movement",
"parallax"
],
"bugs": {
"url": "https://github.com/JB1905/universal-tilt.js/issues"
},
"homepage": "https://github.com/JB1905/universal-tilt.js#readme",
"dependencies": {
"platform": "^1.3.5"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"gh-pages": "^2.0.1",
"husky": "^2.4.1",
"jest": "^24.8.0",
"jquery": "^3.4.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js}": [
"npm run prettier",
"npm run lint",
"git add"
]
}
}