-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "rolly.js",
"version": "0.4.0",
"description": "Custom scroll with inertia, smooth parallax and scenes manager",
"moduleName": "rolly",
"main": "dist/rolly.umd.js",
"module": "dist/rolly.esm.js",
"browser": "dist/rolly.umd.js",
"files": [
"dist/*.js",
"css/*.css"
],
"scripts": {
"eslint": "eslint --ext .js --ignore-path .gitignore --fix ./src/",
"build": "npm run eslint && rollup -c ./build/rollup.config.js --environment BUILD:production",
"dev": "rollup -c ./build/rollup.config.js -w --environment BUILD:development",
"test": "echo \"Error: no test specified\"",
"publish": "npm run build && np",
"docs:build": "vuepress build ./docs",
"docs:dev": "vuepress dev ./docs",
"docs:publish": "sh docs/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mickaelchanrion/rolly.git"
},
"keywords": [
"scroll",
"parallax",
"animation",
"scene",
"smooth-scrolling",
"scrollto",
"rolly"
],
"authors": {
"name": "Mickael Chanrion",
"email": "[email protected]"
},
"contributors": [
{
"name": "MAJ digital",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mickaelchanrion/rolly/issues"
},
"homepage": "https://rolly.maj.digital",
"dependencies": {
"prefix": "^1.0.0",
"virtual-scroll": "^1.5.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"rollup": "^1.1.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-uglify": "^6.0.4",
"vuepress": "^1.4.1"
}
}