forked from valerybugakov/react-selectable-fast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.95 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-selectable-fast",
"version": "3.0.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": "webpack --watch",
"build": "webpack",
"transpile": "tsc",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"prepublishOnly": "yarn lint && yarn clean && yarn build:prod && yarn transpile",
"prettier": "prettier --write src/**/*.{js,ts,tsx} example/src/**/*.{js,ts,tsx} .js",
"lint:basic": "tsc --pretty --noEmit && tslint --fix --format codeFrame",
"lint": "yarn lint:basic --project ./tsconfig.json 'src/**/*.{ts,tsx} example/src/**/*.{ts,tsx}'",
"format": "yarn prettier && yarn lint",
"test": "yarn lint",
"watch:example": "webpack-dev-server --config ./example/webpack.config.example.js --content-base website",
"build:example": "webpack --config ./example/webpack.config.example.js --mode production"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"yarn lint:basic",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"bugs": {
"url": "https://github.com/valerybugakov/react-selectable-fast/issues"
},
"engines": {
"node": ">8.0.0"
},
"keywords": [
"selectable",
"selection",
"mouse",
"fast",
"scrollable",
"performance",
"drag",
"touch",
"react"
],
"author": "Valery Bugakov <skymk1@gmail.com> (https://github.com/valerybugakov/)",
"contributors": [
"Valery Bugakov <skymk1@gmail.com> (https://github.com/valerybugakov/)"
],
"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": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"cross-env": "^5.2.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}