forked from ctrl-freaks/freezeframe.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.37 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "freezeframe",
"version": "5.0.2",
"description": "Freezeframe is a library that automatically pauses animated .gifs and enables them to start animation on mouse hover or click",
"main": "./dist/freezeframe.min.js",
"types": "./dist/packages/freezeframe/src/index.d.ts",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@thrivehive/eslint-config-node": "^1.2.3",
"@types/imagesloaded": "^4.1.2",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^2.0.2",
"common-tags": "^1.8.0",
"copy-webpack-plugin": "^5.1.1",
"coveralls": "^3.1.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"imagesloaded": "^4.1.4",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.26.7",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^1.4.3",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "~4.1.2",
"webpack": "^4.43.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.11.0",
"write-file-webpack-plugin": "^4.5.1"
},
"scripts": {
"build": "node utils/build.js && ./demo.sh",
"start": "node utils/dev.js",
"lint": "eslint ./src",
"test": "jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Ctrl-Freaks/freezeframe.js.git"
},
"author": "ctrl-freaks (Chris Antonellis, Nick Ford)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ctrl-Freaks/freezeframe.js/issues"
},
"homepage": "https://github.com/Ctrl-Freaks/freezeframe.js#readme",
"keywords": [
"freezeframe",
"gif"
]
}