forked from nerdchacha/react-hoverintent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.61 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.61 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-hoverintent",
"version": "0.0.10",
"description": "A simple react implementation over jquery-hoverintent",
"scripts": {
"lint": "eslint src",
"lint:changed": "LIST=`git diff-index --name-only HEAD | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"lint:fix": "npm run lint -- --fix",
"lint:changed:fix": "LIST=`git diff-index --name-only HEAD | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST --fix; fi",
"lint:changed-PR": "LIST=`git diff-index --name-only HEAD^ | grep '.jsx\\{0,1\\}'$`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"test": "npm run test:local && npm run build:component",
"test:local": "env NODE_ENV=test mocha --opts mocha.opts",
"build:component": "babel src/components --out-dir dist/components",
"add:component": "git add dist/",
"start": "webpack-dev-server",
"build:bundle": "webpack",
"cover": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha --opts mocha.opts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdchacha/react-hoverintent"
},
"author": {
"name": "Yatin Gera",
"email": "yatin.gera5@gmail.com"
},
"bugs": {
"url": "https://github.com/nerdchacha/react-hoverintent/issues"
},
"main": "index.js",
"keywords": [
"hover",
"hover intent",
"delay"
],
"license": "MIT",
"precommit": {
"run": [
"build:component",
"build:bundle",
"add:component",
"lint:changed"
]
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.2",
"babel-loader": "^8.2.5",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-react-display-name": "2.0.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"browser-sync": "^2.27.10",
"chai": "^4.3.6",
"classnames": "^2.3.1",
"copy-webpack-plugin": "^11.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"enzyme": "3.11.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-standard": "^4.1.0",
"eventsource-polyfill": "0.9.6",
"expect": "28.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"jsdom": "19.0.0",
"mocha": "10.0.0",
"ncp": "^2.0.0",
"node-sass": "^7.0.1",
"nyc": "^15.1.0",
"postcss-loader": "^7.0.0",
"pre-commit": "^1.2.2",
"react-addons-test-utils": "^15.6.2",
"react-bootstrap": "^2.4.0",
"react-fontawesome": "^1.7.1",
"sass-loader": "^13.0.0",
"scss-loader": "0.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.1",
"webpack-dev-middleware": "5.3.3",
"webpack-dev-server": "^4.9.0",
"webpack-hot-middleware": "^2.25.1",
"webpack-middleware": "^1.5.1"
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}