-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "react-aria-tooltip",
"version": "1.7.1",
"description": "ReactJS ARIA tooltip component",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "rm -rf dist",
"deployjs": "babel src --out-dir dist",
"deploy": "npm run predeploy & mkdir dist & npm run deployjs",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"start": "start-storybook -p 6006"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoens/react-aria-tooltip.git"
},
"keywords": [
"react",
"reactjs",
"component",
"aria",
"tooltip",
"a11y",
"accessibility"
],
"author": "Erik Goens <egoens@gmail.com> (http://erikgoens.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/egoens/react-aria-tooltip/issues"
},
"homepage": "https://github.com/egoens/react-aria-tooltip#readme",
"dependencies": {
"prop-types": "15.7.2"
},
"peerDependencies": {
"react": "^16.0",
"styled-components": "^3"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-centered": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.26.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"storybook": "^5.3.17",
"styled-components": "^5.0.1",
"webpack": "^4.16.2"
}
}