-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
81 lines (81 loc) · 2.29 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
{
"name": "react-simple-tooltip",
"version": "2.6.3",
"author": {
"name": "Cédric Delpoux",
"email": "cedric.delpoux@gmail.com"
},
"description": "A lightweight and simple tooltip component for React",
"files": [
"css",
"es",
"lib",
"umd"
],
"homepage": "https://github.com/cedricdelpoux/react-simple-tooltip#readme",
"keywords": [
"react",
"tooltip",
"bubble"
],
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cedricdelpoux/react-simple-tooltip.git"
},
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"deploy": "gh-pages -d demo/dist",
"lint": "eslint src demo/src",
"precommit": "lint-staged",
"prepublishOnly": "yarn clean && yarn build",
"start": "nwb serve-react-demo --port 1190",
"test": "jest --config jest.config.json --colors --no-cache",
"test:snapshot:update": "jest --config jest.config.json --updateSnapshot",
"test:watch": "yarn run test -- --watch"
},
"dependencies": {
"@emotion/core": "^10.0.10"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^10.0.9",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-emotion": "^10.0.9",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"emotion": "^10.0.9",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.3.0",
"gh-pages": "^1.0.0",
"html-loader": "^0.5.1",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-css-modules": "^1.1.0",
"jest-emotion": "^10.0.11",
"lint-staged": "^4.0.2",
"markdown-loader": "^2.0.1",
"nwb": "^0.18.0",
"prettier": "^1.5.3",
"prop-types": "^15.6.0",
"react": "^16.8.4",
"react-demo-page": "^0.2.2",
"react-dom": "^16.8.4",
"react-test-renderer": "^15.6.1",
"sinon": "^4.2.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0"
}
}