-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.44 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nice-react-carousel",
"version": "1.0.9",
"description": "A carousel for your react project.",
"keywords": [
"carousel",
"slider",
"nice-react-carousel",
"react-carousel",
"slide",
"react"
],
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"format": "prettier-standard --format",
"test": "jest --coverage",
"storybook": "start-storybook"
},
"dependencies": {
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-storysource": "^5.3.18",
"@types/styled-components": "^5.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.3.0",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.32",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.2.7",
"prettier": "^2.0.5",
"rollup": "^2.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.27.0",
"standard": "^14.3.3",
"standard-prettier": "^1.0.1",
"svg-inline-loader": "^0.8.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renadr/nice-react-carousel.git"
},
"author": "Adrien Lemaire",
"homepage": "https://nice-react-carousel.netlify.com/",
"license": "MIT",
"bugs": {
"url": "https://github.com/renadr/nice-react-carousel/issues"
},
"files": [
"build"
]
}