-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.14 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.14 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "js-scroll-effect-module",
"version": "0.13.5",
"description": "Add effect at scroll.",
"keywords": [
"scroll",
"scroll effect",
"scroll effect animation",
"css",
"animation",
"keyframe",
"transition",
"plugin",
"inview"
],
"author": "yama-dev",
"license": "MIT",
"main": "./dist/js-scroll-effect-module.js",
"scripts": {
"start": "npm install && npm run dev",
"dev": "npm-run-all -p webpack:develop server",
"prod": "npm-run-all -p webpack:build",
"server": "browser-sync start --server ./ --directory ./examples --files **/*.css **/*.js **/*.html",
"webpack:develop": "webpack --progress --color --watch",
"webpack:build": "webpack --mode=production --progress --color",
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "https://github.com/yama-dev/js-scroll-effect-module"
},
"bugs": {
"url": "https://github.com/yama-dev/js-scroll-effect-module/issues",
"email": "tatsuya.yamamoto69@gmail.com"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@babel/register": "^7.14.5",
"babel-loader": "^8.2.2",
"browser-sync": "^2.27.5",
"eslint": "^8.57.0",
"eslint-webpack-plugin": "^4.1.0",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@yama-dev/js-dom": "^0.2.1"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"jquery": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [],
"rules": {
"indent": [
"error",
2,
{
"outerIIFEBody": 0
}
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"no-console": "warn",
"no-unused-vars": "warn"
}
},
"volta": {
"node": "16.20.2"
}
}