forked from valerybugakov/react-selectable-fast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-selectable-fast",
"version": "2.1.0",
"description": "Enable other React components to be selectable by drawing a box with your mouse/touch",
"repository": {
"type": "git",
"url": "git://github.com/valerybugakov/react-selectable-fast.git"
},
"main": "lib/index.js",
"scripts": {
"clean": "rimraf ./lib ./dist",
"watch:example": "webpack-dev-server --config ./example/webpack.config.js --content-base example",
"build:example": "webpack --config ./example/webpack.config.js --mode production",
"watch": "webpack --watch",
"build": "webpack",
"transpile": "babel ./src/ -d ./lib/",
"build:prod": "NODE_ENV=production webpack --config webpack.production.config.js",
"prepublish": "npm run lint && npm run clean && npm run build:prod && npm run transpile",
"prettier": "npx prettier --write src/**/*.js example/**/*.js *.js",
"lint": "npx eslint --fix --ext js .",
"format": "npm run prettier && npm run lint",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"bugs": {
"url": "https://github.com/valerybugakov/react-selectable-fast/issues"
},
"keywords": [
"selectable",
"selection",
"mouse",
"fast",
"scrollable",
"performance",
"drag",
"touch",
"react"
],
"author": "Valery Bugakov <skymk1@gmail.com>",
"license": "MIT",
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/valerybugakov/react-selectable-fast#readme",
"directories": {
"example": "example"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-remove-prop-types": "^0.4.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"prop-types": "^15.5.10",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rimraf": "^2.6.1",
"webpack": "^4.6.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}