-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.82 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@its2easy/animate-images",
"version": "2.3.1",
"description": "Javascript library that animates a sequence of images to use in complex animations or pseudo 3d product view",
"author": "Dmitry Kovalev",
"license": "MIT",
"main": "build/animate-images.umd.min.js",
"module": "build/animate-images.esm.min.js",
"types": "types/animate-images.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "webpack --config config/webpack.prod.js && npx tsc && rollup --config config/rollup.config.js && node config/copy-to-examples.js",
"start": "webpack-dev-server --progress --config config/webpack.dev.js --open",
"test": "echo \"Error: no test specified\"",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags"
},
"files": [
"build",
"types/animate-images.d.ts"
],
"keywords": [
"animation",
"animate",
"sequence",
"frames",
"image sequence",
"image animation",
"frames animation",
"360 animation",
"3D",
"3D spin",
"3Dview",
"3d rotation",
"360",
"view360"
],
"repository": {
"type": "git",
"url": "https://github.com/its2easy/animate-images"
},
"sideEffects": false,
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.24.1",
"rollup": "^2.70.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-dts": "^4.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}