-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.48 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
{
"name": "@rcaferati/wac",
"version": "1.0.0",
"description": "CSS controlled animations with transitionEnd, onTransitionEnd, animationend, onAnimationEnd events and frame throwing. Tiny javascript library with cross-browser methods to handle css animation/transition callbacks and event loop frame throwing.",
"repository": {
"type": "git",
"url": "https://github.com/rcaferati/wac.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://web-animation.caferati.me",
"main": "dist/index.js",
"module": "dist/index.js",
"keywords": [
"web animation",
"animation callback",
"transition end",
"ontransitionend",
"onanimationend"
],
"scripts": {
"build": "webpack --mode development",
"build-min": "webpack --mode production --config webpack.prod.js",
"build-watch": "webpack --mode development --watch",
"test": "echo true",
"prepublish": "npm run build && npm run build-min"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"babel-loader": "^8.2.5",
"eslint": "^8.25.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"terser-webpack-plugin": "^5.3.6",
"typescript": "^4.8.4",
"ts-loader": "^9.4.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}