-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "scrollwizardry",
"version": "0.2.1",
"description": "ScrollMagic for wizards",
"main": "dist/scrollwizardry.cjs.js",
"module": "dist/scrollwizardry.esm.js",
"browser": "dist/scrollwizardry.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:parcel": "parcel build src/index.js --global ScrollWizardry",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"files": [
"dist"
],
"author": "Homerjam <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/homerjam/scrollwizardry"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-watch": "^4.3.1"
},
"peerDependencies": {
"gsap": "^3.0.4"
},
"dependencies": {
"lodash": "^4.17.15"
}
}