This repository has been archived by the owner on May 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
53 lines (53 loc) · 1.87 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
{
"name": "react-swipe-views",
"version": "0.0.12",
"description": "React Component for binded Tabs and Swipeable Views",
"main": "./lib/SwipeViews.js",
"scripts": {
"start": "npm install && npm run build && npm run watch",
"watch": "parallelshell 'npm run watch:js' 'npm run watch:css'",
"watch:js": "onchange './src/SwipeViews.js' -- npm run build:js",
"watch:css": "onchange './src/SwipeViews.css' -- npm run build:css",
"build": "npm run build:js && npm run build:css",
"build:js": "npm run build:cjs && npm run build:umd && npm run min:js",
"build:cjs": "babel ./src/SwipeViews.js -o ./lib/SwipeViews.js -v",
"build:umd": "babel ./src/SwipeViews.js --modules umd -o ./lib/react-swipe-views.js -v",
"build:css": "postcss --use autoprefixer ./src/SwipeViews.css -o ./lib/react-swipe-views.css && npm run min:css",
"min:js": "uglifyjs ./lib/react-swipe-views.js -o ./lib/react-swipe-views.min.js",
"min:css": "cleancss ./lib/react-swipe-views.css -o ./lib/react-swipe-views.min.css"
},
"repository": {
"type": "git",
"url": "https://github.com/damusnet/react-swipe-views.git"
},
"keywords": [
"react",
"reactjs",
"react-component",
"swipe",
"views",
"tabs"
],
"author": "Damien Varron <damien@varron.fr> (https://github.com/damusnet)",
"license": "MIT",
"bugs": {
"url": "https://github.com/damusnet/react-swipe-views/issues"
},
"homepage": "https://github.com/damusnet/react-swipe-views",
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel": "~5.8.23",
"babel-eslint": "^4.1.3",
"clean-css": "~3.4.5",
"eslint": "^1.4.3",
"eslint-config-defaults": "^6.0.0",
"eslint-plugin-react": "^3.3.2",
"onchange": "~2.0.0",
"parallelshell": "~2.0.0",
"postcss-cli": "^2.2.0",
"uglify-js": "~2.5.0"
}
}