forked from theKashey/react-remove-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
package.json
File metadata and controls
68 lines (68 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
{
"name": "react-remove-scroll",
"version": "2.0.3",
"description": "Disables scroll outside of `children` node.",
"main": "dist/es5/index.js",
"scripts": {
"test": "ts-react-toolbox test",
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"build": "rm -Rf ./dist && ts-react-toolbox build",
"prepublish": "yarn build",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"scroll"
],
"author": "Anton Korzunov <thekashey@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@storybook/addon-actions": "^5.1.8",
"@storybook/addon-links": "^5.1.8",
"@storybook/addons": "^5.1.8",
"@storybook/react": "^5.1.8",
"@types/enzyme": "^3.9.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/react": "^16.8.20",
"babel-loader": "^8.0.6",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jsx-compress-loader": "^1.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-react-toolbox": "^0.2.2"
},
"engines": {
"node": ">=8.5.0"
},
"peerDependencies": {
"react": "^16.8.0"
},
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"files": [
"dist",
"UI",
"sidecar"
],
"repository": "https://github.com/theKashey/react-remove-scroll",
"dependencies": {
"react-remove-scroll-bar": "^2.0.0",
"react-style-singleton": "^2.0.0",
"tslib": "^1.0.0",
"use-sidecar": "^1.0.1"
},
"sideEffects": false,
"resolutions": {
"typescript": "^3.0.0"
}
}