-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
85 lines (85 loc) · 2.69 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
{
"name": "react-power-tooltip",
"version": "1.0.2",
"description": "A powerful tooltip and menu component library for react.",
"main": "./lib/index.js",
"scripts": {
"dev": "concurrently \"npm run lib:watch\" \"npm run docs\"",
"lib": "babel src/lib -d lib --copy-files",
"lib:watch": "babel src/lib -w -d lib --copy-files",
"docs": "webpack-dev-server --mode development --config webpack/dev.config.js",
"docs:prod": "webpack --mode production --config webpack/prod.config.js",
"test": "NODE_ENV=test jest --coverage --coverageReporters=text-lcov | coveralls",
"test:watch": "jest --watch",
"mock:create": "webpack --mode development --config webpack/test.config.js",
"lint": "eslint --ext .js,.jsx src/lib",
"prepublish": "npm run lib",
"postinstall": "node postinstall.js"
},
"keywords": [
"tooltip",
"notification",
"menu",
"react",
"react-component"
],
"license": "MIT",
"peerDependencies": {
"react": "^15.3.0 || ^16.2.0",
"react-dom": "^15.3.0 || ^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0",
"babel-plugin-prismjs": "^1.0.2",
"concurrently": "^3.5.1",
"coveralls": "3.0.2",
"css-loader": "^0.28.11",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-css-modules": "^1.1.0",
"jest-enzyme": "^7.0.0",
"prismjs": "^1.15.0",
"puppeteer": "^1.10.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-prism": "^4.3.2",
"style-loader": "^0.21.0",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3"
},
"author": "Justin Rhodes <[email protected]>",
"homepage": "https://github.com/justinrhodes1/react-power-tooltip",
"repository": {
"type": "git",
"url": "[email protected]:justinrhodes1/react-power-tooltip.git"
},
"dependencies": {},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css)$": "jest-css-modules"
},
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js"
}
}