-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "intween",
"version": "1.0.0-beta.9",
"description": "The Interactive Tweening Library",
"main": "dist/intween.cjs",
"module": "dist/intween.mjs",
"browser": "dist/intween.browser.js",
"exports": {
"import": "./src/index.js",
"bun": "./src/index.js",
"require": "./dist/intween.cjs",
"default": "./src/index.js"
},
"files": [
"dist/intween.mjs",
"dist/intween.cjs",
"dist/intween.browser.js",
"LICENSE",
"package.json",
"README.md",
"src"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:browser && npm run test",
"build:esm": "esbuild src/index.js --bundle --format=esm --target=es6 --outfile=dist/intween.mjs",
"build:cjs": "esbuild src/index.js --bundle --format=cjs --target=es6 --outfile=dist/intween.cjs",
"build:browser": "esbuild src/index.js --bundle --format=iife --target=es6 --global-name=InTween --minify --outfile=dist/intween.browser.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"dev": "esbuild src/index.js --bundle --format=esm --target=es6 --outfile=dist/intween.mjs --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"version": "npm run build",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/wellcaffeinated/intween"
},
"keywords": [
"intween",
"intween.js",
"tween",
"animation",
"javascript"
],
"author": "wellcaffeinated",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellcaffeinated/intween/issues"
},
"homepage": "https://intween.wellcaffeinated.net",
"devDependencies": {
"esbuild": "0.25.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^3.2.0",
"jsdom": "13.0.0",
"jsdom-global": "3.0.2",
"raw-loader": "^4.0.2",
"rxjs": "^7.8.2",
"vuepress": "^1.9.10",
"webpack": "^4.47.0"
},
"dependencies": {
"core-js": "3.41.0",
"core-js-pure": "3.41.0",
"global": "^4.4.0"
}
}