-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
{
"name": "animon",
"version": "1.0.4",
"description": "Animate DOM elements when they appear in the viewport",
"main": "dist/animon.js",
"scripts": {
"build": "postcss src/animon.pcss -o dist/animon.css && rollup -c",
"prepublish": "npm run build"
},
"keywords": [
"animation",
"intersectionObserver",
"dom",
"scroll"
],
"files": [
"dist"
],
"author": "Benjamin Réthoré",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-eslint": "^8.0.1",
"autoprefixer": "^10.2.5",
"cssnano": "^5.0.2",
"eslint": "^7.26.0",
"postcss": "^8.2.14",
"postcss-cli": "^8.3.1",
"postcss-nested": "^5.0.5",
"rollup": "^2.47.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"browserslist": [
"defaults"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bnthor/animon.git"
},
"bugs": {
"url": "https://github.com/bnthor/animon/issues"
},
"homepage": "https://bnthor.github.io/animon/"
}