-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
97 lines (97 loc) · 2.83 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
89
90
91
92
93
94
95
96
97
{
"name": "react-hover",
"version": "3.0.1",
"description": "A handy hover tool for React",
"main": "dist/index.js",
"scripts": {
"dev": "webpack-dev-server -d --history-api-fallback --hot --inline --progress --colors --port 8080",
"prepublishOnly": "parallelshell -w \"npm run build:dist -s\" \"npm run build:example -s\" \"npm run build:bower -s\"",
"prebuild": "rimraf dist example build",
"build:dist": "babel src --out-dir dist --source-maps --ignore src/example",
"build:example": "webpack --config webpack.config.js",
"postbuild": "npm run test -s",
"test": "babel-node test/index.js | tnyan",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cht8687/react-hover.git"
},
"keywords": [
"react",
"react-component",
"component",
"react-tooltip",
"tooltip",
"hover",
"react hover"
],
"files": [
"dist"
],
"author": "Robert Chang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cht8687/react-hover/issues"
},
"homepage": "https://github.com/cht8687/react-hover#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-tape-runner": "^3.0.0",
"classnames": "^2.2.5",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.2",
"css-loader": "^3.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"faucet": "0.0.1",
"html-webpack-plugin": "^3.2.0",
"isparta": "^4.0.0",
"mini-css-extract-plugin": "^0.4.2",
"parallelshell": "^3.0.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-code-blocks": "0.0.9-0",
"react-dom": "^16.13.1",
"react-hot-loader": "^3.1.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^2.4.3",
"sinon": "^1.17.3",
"snazzy": "^8.0.0",
"tap-nyan": "0.0.2",
"tap-xunit": "^2.3.0",
"tape": "^4.5.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": [
"prettier --write",
"git add"
]
}
}