forked from armandsalle/butter-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.18 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
76
77
78
79
80
81
82
83
84
85
{
"name": "butter-slider",
"version": "1.1.2",
"description": "Simple hold and drag slider",
"main": "dist/bundle.umd.js",
"module": "dist/bundle.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@rollup/plugin-typescript": "^5.0.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.13.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"scripts": {
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/armandsalle/Slider.git"
},
"keywords": [
"slider",
"draggable",
"butter",
"drag",
"basic",
"typesript"
],
"author": "Armand Sallé",
"license": "MIT",
"bugs": {
"url": "https://github.com/armandsalle/Slider/issues"
},
"homepage": "https://github.com/armandsalle/Slider#readme",
"engines": {
"node": ">=8"
}
}