-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.77 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.77 KB
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
{
"name": "react-latte-carousel",
"version": "1.3.0",
"description": "LatteCarousel is a lightweight and responsive carousel.",
"repository": "https://github.com/latte-carousel/react-latte-carousel.git",
"author": {
"name": "LatteCarousel",
"url": "https://latte-carousel.github.io"
},
"license": "MIT",
"private": false,
"main": "dist/react-latte-carousel.min.js",
"types": "dist/lib/index.d.ts",
"keywords": [
"carousel",
"responsive",
"react",
"javascript",
"slider",
"typescript"
],
"homepage": "https://lattecarousel.dev",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"serve": "http-server \"./\"",
"format": "yarn run format:prettier && yarn run format:csscomb",
"format:prettier": "prettier --find-config-path --write \"./src/**\" \"./example/**\"",
"format:csscomb": "csscomb \"./example\"",
"lint": "yarn run lint:tslint && yarn run lint:eslint",
"lint:tslint": "tslint -c \"tslint.json\" \"./**/*.ts\"",
"lint:eslint": "eslint \"./**/*.js\""
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"babel-standalone": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"csscomb": "^4.3.0",
"eslint": "^6.8.0",
"http-server": "^0.12.1",
"prettier": "2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-loader": "^7.0.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"peerDependencies": {
"latte-carousel": "^1.6.1"
}
}