forked from WoWAnalyzer/react-tooltip-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.83 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
{
"name": "@wowanalyzer/react-tooltip-lite",
"version": "3.0.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 && cp src/index.d.ts dist/index.d.ts",
"build": "npm run transpile && npm run bundle",
"prepublish": "npm run build"
},
"files": [
"dist",
"example"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WoWAnalyzer/react-tooltip-lite.git"
},
"keywords": [
"React"
],
"author": "Ben Sidelinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/WoWAnalyzer/react-tooltip-lite/issues"
},
"homepage": "https://github.com/WoWAnalyzer/react-tooltip-lite#readme",
"dependencies": {
"prop-types": "^15.5.8",
"react-minimalist-portal": "2.3.1"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.18.2",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"enzyme": "^2.4.1",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.7.1",
"expect": "^1.20.2",
"mocha": "^2.5.3",
"react": "^16.2.0",
"react-addons-test-utils": "^15.2.1",
"react-dom": "^16.2.0",
"react-hot-loader": "^1.3.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}