forked from kidjp85/react-id-swiper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.51 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "react-id-swiper",
"version": "1.6.8",
"description": "ReactJs component for iDangerous Swiper",
"main": "lib/index",
"scripts": {
"build:lib": "rm -rf lib/* && babel src -d lib",
"build:standalone": "cross-env BABEL_ENV=production webpack",
"build": "yarn test && yarn build:lib && yarn build:standalone",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js",
"test": "jest",
"test:dev": "jest --watch --coverage",
"test:coverage": "jest --coverage"
},
"pre-commit": [
"lint"
],
"keywords": [
"iDangerous",
"Swiper",
"Reactjs"
],
"engines": {
"node": ">= 4.7.0"
},
"repository": {
"type": "git",
"url": "git://github.com/kidjp85/react-id-swiper.git"
},
"author": "Phuc Nguyen Hoang<phucnguyenhoang1985@gmail.com>",
"dependencies": {
"object-assign": "^4.1.1",
"prop-types": "^15.6.2",
"swiper": "4.4.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"cross-env": "5.1.3",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "^3.3.1",
"eslint": "4.18.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.6.1",
"jest": "^22.3.0",
"jsdom": "^11.6.2",
"pre-commit": "^1.2.2",
"prettier": "1.10.2",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"react-test-renderer": "^16.2.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "4.17.1",
"webpack-cli": "^3.1.0"
},
"jest": {
"resetMocks": true,
"resetModules": true,
"verbose": true,
"browser": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"setupTestFrameworkScriptFile": "./test-setup.js"
},
"license": "MIT"
}