-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.77 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
{
"name": "@wtjs/tooltip",
"description": "Light-weight tooltip component for react ecosystem",
"version": "1.0.0",
"main": "lib/index.js",
"repository": "[email protected]:wtjs/tooltip.git",
"authors": [
"Deepak Grover <[email protected]> (https://github.com/metagrover)",
"Divyanshu Maithani <[email protected]> (https://github.com/divyanshu013)"
],
"license": "MIT",
"scripts": {
"start": "docz dev",
"build:lib": "babel src --out-dir lib --ignore __tests__",
"build:docs": "docz build",
"deploy": "npm run build:lib && npm run build:docs && gh-pages -d .docz/dist",
"lint": "eslint .",
"test": "jest"
},
"peerDependencies": {
"react": ">=16.2.0",
"react-dom": ">=16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.53",
"@babel/core": "^7.0.0-beta.53",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.53",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0-beta.53",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"docz": "^0.5.8",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^1.2.0",
"jest": "^23.4.1",
"prettier": "^1.13.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-testing-library": "^4.1.2"
},
"dependencies": {
"prop-types": "^15.6.2"
}
}