-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.85 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
{
"name": "fast-ease",
"version": "0.0.4",
"description": "Fast and minimalistic javascript animation library",
"main": "dist/fast-ease.cjs.js",
"browser": "dist/fast-ease.esm.js",
"type": "module",
"scripts": {
"start": "run-p dev:*",
"dev:build_esm": "esbuild src/index.js --format=esm --bundle --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.esm.js --watch",
"dev:demo": "browser-sync start -s -w --directory --startPath ./index.html",
"build": "run-p build:*",
"build:iife": "esbuild src/iife.js --format=iife --bundle --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.js",
"build:iife-min": "esbuild src/iife.js --format=iife --bundle --minify --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.min.js",
"build:cjs": "esbuild src/index.js --format=cjs --bundle --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.cjs.js",
"build:cjs-min": "esbuild src/index.js --format=cjs --bundle --minify --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.cjs.min.js",
"build:esm": "esbuild src/index.js --format=esm --bundle --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.esm.js",
"build:esm-min": "esbuild src/index.js --format=esm --bundle --minify --target=chrome60,firefox60,safari12 --outfile=dist/fast-ease.esm.min.js"
},
"keywords": [
"tween",
"animation",
"interpolation",
"css",
"dom",
"fast",
"lightweight",
"tiny"
],
"author": "Dmitrii Vasilev",
"homepage": "https://fast-ease.js.org",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caracal7/fast-ease"
},
"bugs": {
"url": "https://github.com/caracal7/fast-ease/issues"
},
"devDependencies": {
"@ui.js.org/ui": "^0.7.8",
"browser-sync": "^3.0.2",
"esbuild": "^0.20.1",
"npm-run-all": "^4.1.5"
}
}