forked from davidjerleke/embla-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.56 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
{
"name": "embla-carousel",
"version": "4.3.0",
"private": false,
"author": "David Cetinkaya <david.o.cetinkaya@gmail.com>",
"description": "A lightweight carousel library with fluid motion and great swipe precision",
"keywords": [
"slider",
"carousel",
"slideshow",
"gallery",
"lightweight",
"touch",
"javascript",
"typescript",
"react"
],
"license": "MIT",
"main": "embla-carousel.umd.js",
"unpkg": "embla-carousel.umd.js",
"module": "embla-carousel.esm.js",
"types": "index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/davidcetinkaya/embla-carousel"
},
"bugs": {
"url": "https://github.com/davidcetinkaya/embla-carousel/issues"
},
"homepage": "https://www.embla-carousel.com",
"files": [
"embla-carousel*",
"vanilla*",
"react*",
"index.d.ts"
],
"scripts": {
"test": "jest --config jestconfig.json",
"lint": "npm-run-all prettier:report eslint:report",
"format": "npm-run-all prettier:fix eslint:fix",
"build": "rollup -c",
"start": "rollup -c --watch",
"start:vanilla": "rollup -c --watch --environment BUILD:development,PACKAGE:vanilla",
"start:react": "rollup -c --watch --environment BUILD:development,PACKAGE:react",
"prettier:report": "prettier '**/*.{js,tsx,ts,scss,json}' --check",
"prettier:fix": "prettier '**/*.{js,tsx,ts,scss,json}' --write",
"eslint:report": "eslint 'src/**/*.{js,tsx,ts}'",
"eslint:fix": "eslint 'src/**/*.{js,tsx,ts}' --fix",
"prepare": "npm run build",
"prepublishOnly": "npm-run-all test lint",
"preversion": "npm-run-all test lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-object-assign": "^7.12.13",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/jest": "^24.9.1",
"@types/jest-diff": "^20.0.0",
"@types/react": "^16.14.5",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"react": "^16.14.0",
"rollup": "^2.42.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.3",
"ts-jest": "^26.5.4",
"typescript": "^3.9.9"
}
}