-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "react-component-swiper",
"version": "1.0.3",
"description": "A carousel of components",
"main": "dist/main.bundle.js",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --config ./webpack.dev.js --mode development",
"build": "webpack --mode production"
},
"jest": {
"verbose": true,
"coverageReporters": [
"text",
"html",
"clover"
],
"roots": [
"src"
],
"setupTestFrameworkScriptFile": "<rootDir>src/setupTests.js",
"moduleNameMapper": {
"^.+\\.(css)$": "<rootDir>/config/CSSStub.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/gabrielbs/react-component-swiper.git"
},
"author": "Gabriel Ferreira",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.3.0",
"style-loader": "^0.21.0",
"webpack": "^4.7.0",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-transition-group": "^2.3.1",
"recompose": "^0.27.0"
}
}