-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
{
"name": "animate-vanilla-js",
"version": "1.0.10",
"description": "An vanilla js implementation of a function to animate an element",
"main": "dist/animate-vanilla-js-umd.js",
"types": "dist/animate-vanilla-js-umd.d.ts",
"author": "Peter Hegman",
"license": "MIT",
"keywords": [
"animate",
"vanilla js",
"vanilla javascript",
"javascript",
"js",
"requestAnimationFrame",
"animation",
"easing",
"easings"
],
"repository": {
"type": "git",
"url": "https://github.com/phegman/animate-vanilla-js.git"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/webpack-env": "^1.14.0",
"@typescript-eslint/parser": "^1.13.0",
"autoprefixer": "^9.6.1",
"css-loader": "^3.1.0",
"eslint": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.1",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"scripts": {
"build": "rimraf dist && webpack --mode production && mv dist/animate-vanilla-js.d.ts dist/animate-vanilla-js-umd.d.ts",
"serve": "webpack-dev-server --hot --inline --mode development",
"lint": "./node_modules/.bin/eslint src/**/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"es6-promise": "^4.2.8"
}
}