-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.04 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
{
"name": "@ryanmorr/fx",
"description": "JavaScript animation library",
"version": "1.0.1",
"license": "Unlicense",
"author": "Ryan Morr",
"homepage": "https://github.com/ryanmorr/fx",
"bugs": "https://github.com/ryanmorr/fx/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanmorr/fx.git"
},
"keywords": [
"javascript",
"animation",
"effects",
"tween"
],
"type": "module",
"main": "dist/cjs/fx.js",
"module": "dist/esm/fx.js",
"browser": "dist/umd/fx.js",
"exports": {
".": {
"browser": "./dist/umd/fx.js",
"import": "./dist/esm/fx.js",
"require": "./dist/cjs/fx.js"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src/**",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"eslint": "^8.33.0",
"rollup": "^3.14.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"terser": "^5.16.3"
}
}