-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.27 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
{
"name": "rehover",
"version": "0.4.0",
"description": "React hovering on two elements made simpler!",
"main": "./lib/main.js",
"scripts": {
"dev": "BABEL_ENV=development ./node_modules/.bin/babel --watch ./src/ --out-dir ./lib",
"build": "BABEL_ENV=production ./node_modules/.bin/babel ./src/ --out-dir ./lib",
"test": "./node_modules/.bin/eslint src/ && ./node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulRosset/rehover.git"
},
"keywords": [
"react",
"hover"
],
"author": "Paul Rosset <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulRosset/rehover/issues"
},
"homepage": "https://github.com/PaulRosset/rehover#readme",
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"eslint": "^4.19.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.3",
"prettier": "^1.11.1",
"react-dom": "^16.3.2",
"react-test-renderer": "^16.3.1",
"react-testing-library": "^1.9.0"
}
}