forked from yaodingyd/react-flickity-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
{
"name": "react-flickity-component",
"version": "3.0.3",
"description": "react flickity component",
"main": "./lib/index.js",
"scripts": {
"test": "npm run pretty && jest ./__tests__",
"pretty": "prettier --single-quote --trailing-comma es5 --write \"src/**/*.js\"",
"prepublishOnly": "babel ./src --out-dir ./lib --source-maps"
},
"author": "theolampert",
"license": "GPL3",
"repository": {
"type": "git",
"url": "git://github.com/theolampert/react-flickity-component.git"
},
"keywords": [
"react",
"carousel",
"slider",
"flickity",
"react-component"
],
"dependencies": {
"fbjs": "^0.8.12",
"flickity": "^2.1.1",
"imagesloaded": "^4.1.3",
"prop-types": "^15.5.10",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.2",
"babel-jest": "^23.0.0",
"babel-plugin-add-module-exports": "^0.3.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.0.2",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"sinon": "^6.0.0"
},
"peerDependencies": {
"react": "~16.0.0",
"react-dom": "~16.0.0"
},
"jest": {
"testURL": "http://localhost/"
}
}