forked from oliviertassinari/react-swipeable-views
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.74 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
{
"name": "@gaudiy/react-swipeable-views",
"version": "0.0.5",
"description": "A React component for swipeable views",
"main": "lib/index.js",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
},
"author": "gaudiy",
"repository": {
"type": "git",
"url": "https://github.com/gaudiy/react-swipeable-views.git"
},
"bugs": {
"url": "https://github.com/gaudiy/react-swipeable-views/issues"
},
"scripts": {
"build": "NODE_ENV=production babel --config-file ./babel.config.js src --out-dir lib --ignore **/*.test.js",
"build:copy-files": "node ./scripts/copy-files.js",
"prepublish": "rm -rf packages/*/lib && yarn build && yarn build:copy-files",
"lint": "eslint . && echo \"eslint: no lint errors\"",
"prettier": "find . -name \"*.js\" | grep -v -f .eslintignore | xargs prettier --write --single-quote --trailing-comma all --print-width 100"
},
"dependencies": {
"@babel/runtime": "7.0.0",
"prop-types": "^15.5.4",
"react-swipeable-views-core": "^0.13.7"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-dev-warning": "^0.1.1",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"fs-extra": "^9.0.1"
}
}