-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "wiscroll",
"version": "0.1.4",
"description": "Scroll based animation JavaScript library",
"main": "dist/wiscroll.js",
"module": "dist/wiscroll.esm.js",
"umd:main": "dist/wiscroll.js",
"umd:name": "Wiscroll",
"repository": {
"type": "git",
"url": "[email protected]:webisle/wiscroll.git"
},
"scripts": {
"build": "node build",
"pretty": "prettier src/index.js --write",
"test": "jest",
"start": "rollup -c"
},
"homepage": "https://github.com/webisle/wiscroll",
"keywords": [
"scroll",
"animation",
"IntersectionObserver",
"javascript",
"library",
"ecmascript6",
"parallax"
],
"author": "Tom Chen <[email protected]>",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"@babel/preset-env": "^7.7.4",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-bytes": "^5.3.0",
"rollup": "^1.27.5",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {},
"bugs": {
"url": "https://github.com/webisle/wiscroll/issues"
}
}