forked from textpress/react-tippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 2.88 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@opallabs/react-tippy",
"version": "1.2.2",
"description": "React tippy",
"main": "dist/react-tippy.js",
"author": "Opal Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/opallabs/react-tippy.git"
},
"bugs": {
"url": "https://github.com/opallabs/react-tippy/issues"
},
"homepage": "https://github.com/opallabs/react-tippy",
"nyc": {
"watermarks": {
"lines": [
25,
90
],
"functions": [
25,
90
],
"branches": [
25,
90
],
"statements": [
25,
90
]
},
"lines": 49,
"statements": 47,
"functions": 29,
"branches": 33,
"exclude": [
"dist/**/*",
"test/helpers/*",
"**/webpacklib.config.js",
"coverage/**/*"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"cache": true,
"check-coverage": true,
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^1.0.0",
"eslint": "^3.18.0",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.42.0",
"lodash-webpack-plugin": "^0.11.2",
"mocha": "^3.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.5",
"react-scripts": "1.1.1",
"recompose": "^0.26.0",
"redux": "^3.7.1",
"redux-state-action": "^1.0.8",
"redux-thunk": "^2.2.0",
"style-loader": "^0.23.0",
"webpack": "^2.3.0",
"yargs": "^7.0.2"
},
"scripts": {
"build": "webpack --config webpacklib.config.js --env build",
"lint": "eslint src/**/*.js",
"prepare": "webpack --config webpacklib.config.js --env build",
"start": "react-scripts start",
"test": "NODE_ENV=test nyc mocha --opts ./test/mocha.opts"
},
"dependencies": {
"babel-plugin-istanbul": "^5.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-polyfill": "^6.26.0",
"cache-require-paths": "^0.3.0",
"chai-enzyme": "^1.0.0-beta.1",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.0",
"ignore-styles": "^5.0.1",
"jsdom": "^12.0.0",
"nyc": "^13.0.1",
"popper.js": "^1.11.1",
"sinon": "^6.2.0",
"sinon-chai": "^3.2.0",
"tippy.js": "^2.6.0"
}
}