-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.89 KB
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
{
"name": "react-popover-component",
"version": "0.0.5",
"description": "React popover component",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/slavakisel/react-popover-component.git"
},
"keywords": [
"react",
"popover"
],
"author": "Slava Kisel <letitbe400@gmail.com>",
"bugs": {
"url": "https://github.com/slavakisel/react-popover-component/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "*",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.0.2",
"@types/webpack-env": "1.14.0",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"css-loader": "0.28.7",
"enzyme": "^2.9.1",
"extract-text-webpack-plugin": "^3.0.0",
"html-webpack-plugin": "^2.30.1",
"jest": "^24.9.0",
"jest-serializer-enzyme": "^1.0.0",
"node-sass": "^4.9.3",
"path": "^0.12.7",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.6",
"sinon": "^2.3.5",
"standard-version": "^8.0.1",
"style-loader": "^0.18.2",
"typescript": "^2.5.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"react": "^15.6.1",
"react-onclickoutside": "^6.5.0"
},
"resolutions": {
"kind-of": ">= 6.0.3"
},
"jest": {
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-enzyme"
]
},
"scripts": {
"test": "jest",
"build": "webpack --config webpack.config.js",
"build:demo": "webpack --config webpack.demo.config.js",
"compile": "npm run build && npm run build:demo",
"release": "standard-version",
"serve": "webpack-dev-server --config webpack.demo.config.js"
}
}