-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "slidetoggle",
"version": "4.0.0",
"description": "Small library that replaces the so-loved jQuery function",
"main": "dist/slidetoggle.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/zgrybus/slidetoggle"
},
"homepage": "https://zgrybus.github.io/slideToggle",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"author": "Krzysztof Nofz",
"license": "MIT",
"keywords": [
"Javascript",
"slideToggle",
"toggleSlide",
"animation",
"jQuery",
"replace jQuery",
"Typescript",
"Vanilla Javascript",
"JS",
"Animate Functions",
"requestAnimationFrame"
],
"scripts": {
"start": "webpack serve --mode=development",
"lint": "eslint --ext .ts,.tsx ./src",
"build": "tsc -p ./tsconfig.build.json && webpack --mode=production",
"release": "release-it"
},
"devDependencies": {
"@types/jest": "29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.2.1",
"release-it": "^15.6.0",
"source-map-loader": "^4.0.1",
"ts-jest": "29.0.5",
"ts-loader": "^9.2.4",
"typescript": "^4.9.5",
"webpack": "^5.26.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {}
}