forked from ReactTooltip/react-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.39 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-tooltip",
"version": "0.0.0-semantic-release",
"description": "react tooltip component",
"main": "dist/index.js",
"scripts": {
"test": "make lint",
"start": "make dev",
"build": "make deploy",
"deploy": "make deploy",
"gh-pages": "gh-pages -d example",
"github-changes": "github-changes -o wwayne -r react-tooltip -a --only-pulls --use-commit-body",
"commit": "git cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/",
"standalone/",
"src/style.js",
"src/style.css",
"example/"
]
},
"repository": {
"type": "git",
"url": "https://github.com/wwayne/react-tooltip"
},
"keywords": [
"react",
"react-component",
"tooltip",
"react-tooltip"
],
"author": "wwayne",
"license": "MIT",
"bugs": {
"url": "https://github.com/wwayne/react-tooltip/issues"
},
"homepage": "https://github.com/wwayne/react-tooltip",
"browserify-shim": {
"react": "global:React",
"react-dom": "global:ReactDOM"
},
"peerDependencies": {
"react": ">=0.14",
"react-dom": ">=0.14"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
},
"engines": {
"node": ">=4.2.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.9.1",
"babel-eslint": "^4.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.0",
"commitizen": "2.9.6",
"concurrently": "^2.1.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^2.3.0",
"enzyme-adapter-react-16": "^1.0.1",
"gh-pages": "1.1.0",
"github-changes": "^1.1.2",
"http-server": "^0.11.1",
"jsdom": "^9.2.1",
"mocha": "^5.2.0",
"node-sass": "^3.7.0",
"react": "^16.1.1",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^16.1.1",
"semantic-release": "15.1.5",
"sinon": "^1.17.4",
"snazzy": "^2.0.1",
"standard": "^5.2.2",
"uglifyjs": "^2.4.10",
"watchify": "^3.11.0"
}
}