-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.21 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
{
"name": "onscroll-effect",
"version": "1.3.1",
"description": "A tiny JavaScript library to enable CSS animations when user scrolls.",
"main": "src/index.js",
"scripts": {
"filesize-for-doc": "node tasks/generate-file-size.js",
"start-doc": "browser-sync start --server --files 'docs/**/*.*' --startPath '/docs'",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "npm run lint",
"clean": "del-cli --force dist",
"build": "npm run clean && gulp && npm run filesize-for-doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Twikito/onscroll-effect.git"
},
"keywords": [
"scroll",
"toggle",
"css",
"animation"
],
"author": "Matthieu Bué <https://twikito.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Twikito/onscroll-effect/issues"
},
"homepage": "https://twikito.github.io/onscroll-effect/",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"browser-sync": "^2.26.12",
"del-cli": "^3.0.0",
"eslint": "^7.9.0",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-header": "^2.0.9",
"gulp-rename": "^2.0.0",
"gulp-terser": "^1.1.7",
"gulp-util": "^3.0.8",
"gzip-size": "^5.1.1"
}
}