-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
35 lines (35 loc) · 844 Bytes
/
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
{
"name": "tornis",
"version": "0.3.6",
"description": "Tornis helps you watch and respond to changes in your browser's viewport",
"main": "dist/tornis.js",
"module": "src/tornis.js",
"typings": "index.d.ts",
"scripts": {
"build": "node rollup.js",
"build:es5": "node rollup.js --es5"
},
"icon": "icon.png",
"keywords": [
"viewport",
"mouse",
"scrolling",
"state",
"orientation",
"management"
],
"author": {
"name": "Robb Owen",
"email": "[email protected]",
"url": "https://robbowen.digital"
},
"homepage": "https://github.com/robb0wen/tornis#readme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-uglify-es": "0.0.1"
}
}