-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "react-carouselize",
"version": "1.0.9",
"description": "react-carouselize React component",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "jest --config jest.config.js --no-cache",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"dependencies": {},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.1.0",
"classnames": "^2.2.6",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"jest": "^24.1.0",
"jest-transform-css": "^2.0.0",
"nwb": "0.23.x",
"react": "^16.8.2",
"react-dom": "^16.8.2"
},
"author": "Francesco Fortunati",
"homepage": "",
"license": "MIT",
"repository": "https://github.com/one89/react-carouselize",
"keywords": [
"react",
"carousel",
"slider",
"slideshow",
"ui",
"react-component",
"gallery",
"image-gallery"
]
}