-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
79 lines (79 loc) · 2.65 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
{
"name": "react-tooltip-lite",
"version": "1.12.0",
"description": "React tooltip, focused on simplicity and performance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"bundle": "node node_modules/webpack/bin/webpack.js -p --colors --display-error-details --config webpack.dist.config.js",
"dev": "webpack-dev-server --progress --colors",
"transpile": "babel src --out-dir dist --ignore ./src/**/*.test.jsx && cp src/index.d.ts dist/index.d.ts",
"build": "rm -rf dist && mkdir dist && npm run transpile && npm run bundle",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test:jest": "jest --config ./test/jest.config.json",
"test:storyshots": "jest --config ./test/jest.storyshots.config.json",
"test": "yarn test:jest && yarn test:storyshots"
},
"files": [
"dist",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bsidelinger912/react-tooltip-lite.git"
},
"keywords": [
"React"
],
"author": "Ben Sidelinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/bsidelinger912/react-tooltip-lite/issues"
},
"homepage": "https://github.com/bsidelinger912/react-tooltip-lite#readme",
"dependencies": {
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0",
"react-dom": "^15.5.4 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-knobs": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/addon-storyshots": "^5.0.10",
"@storybook/addon-storyshots-puppeteer": "^5.0.10",
"@storybook/addon-viewport": "^5.0.11",
"@storybook/addons": "^5.0.10",
"@storybook/react": "^5.0.10",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"babel-plugin-require-context-hook": "^1.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^7.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}