forked from xiaody/react-touch-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.89 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.89 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
{
"name": "react-touch-carousel",
"version": "0.8.3",
"description": "Micro carousel framework for React.JS",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run lint && npm run spec",
"lint": "standard",
"lint:fix": "standard --fix",
"spec": "ava",
"prebuild": "mkdir -p lib",
"build": "for js in src/*.js; do babel $js > \"lib/$(basename $js)\"; done",
"list-demo": "cd examples; find . -name index.html | xargs -n1 dirname | xargs -n1 basename",
"docs": "rm -r docs; PAGES=$(npm run -s list-demo) webpack -p",
"dev": "PAGES=$(npm run -s list-demo) webpack-dev-server --hot --inline",
"prepare": "npm run build"
},
"keywords": [
"react",
"react-component",
"carousel",
"slider",
"swipe"
],
"author": "xiaody",
"license": "MIT",
"repository": "xiaody/react-touch-carousel",
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"ava": "0.25",
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-loader": "7.1.4",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-es2015": "6.24.1",
"classnames": "2.2.5",
"css-loader": "0.28.11",
"html-webpack-plugin": "2.30.1",
"raw-loader": "0.5.1",
"react": "16.4.0",
"react-dom": "16.4.0",
"standard": "11.0.1",
"standard-loader": "^6.0.1",
"style-loader": "0.21.0",
"uglify-js": "3.4.0",
"watchify": "3.11.0",
"webpack": "3.6.0",
"webpack-dev-server": "2.9.1"
},
"dependencies": {
"react-motion": "0.5.2"
},
"standard": {
"ignore": [
"lib",
"docs/*.bundle.js"
],
"parser": "babel-eslint"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}