This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.68 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
73
74
75
76
77
78
{
"name": "pokamnieto",
"version": "0.1.0",
"description": "A lightweight for revealing elements when they appear in the view while scrolling the page based on the IntersectionObserver API.",
"keywords": [
"animation",
"animation-css",
"scroll",
"transition",
"trigger",
"reveal",
"vanilla-javascript",
"vanilla-js",
"vanillajs"
],
"main": "lib/js/pokamnieto.js",
"browser": "lib/js/pokamnieto.js",
"files": [
"lib",
"src"
],
"scripts": {
"server": "live-server ./docs",
"watch:lib": "gulp watch:lib",
"build:lib": "gulp build:lib",
"test": "jest"
},
"homepage": "https://github.com/tyczynski/pokamnieto.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tyczynski/pokamnieto.js.git"
},
"bugs": {
"url": "https://github.com/tyczynski/pokamnieto.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tyczynski/pokamnieto.js/blob/master/LICENSE"
}
],
"author": {
"name": "Przemysław Tyczyński",
"url": "https://tyczynski.pl"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --config .prettierrc --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"del": "^4.1.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"gulp": "^4.0.2",
"gulp-header": "^2.0.7",
"gulp-rename": "^1.4.0",
"gulp-rollup": "^2.16.2",
"gulp-sass": "^4.0.2",
"gulp-uglify-es": "^1.0.4",
"husky": "^2.4.1",
"jest": "^24.8.0",
"lint-staged": "^8.2.0",
"live-server": "^1.2.1",
"node-sass": "^4.12.0",
"prettier": "^1.18.2"
}
}