-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
100 lines (100 loc) · 2.6 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
{
"name": "reactjs-popup",
"version": "2.0.6",
"description": "React Popup Component - Modals,Tooltips and Menus — All in one",
"main": "dist/index.js",
"module": "dist/reactjs-popup.esm.js",
"umd:main": "dist/reactjs-popup.umd.production.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "NODE_ENV=production tsdx build --entry src/index.tsx --format=cjs,esm,umd",
"test": "tsdx test --passWithNoTests --env=jest-environment-jsdom-sixteen",
"lint": "tsdx lint",
"prepare": "tsdx build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"np": "np --any-branch"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@storybook/addon-actions": "^6.0.7",
"@storybook/addon-docs": "^6.0.7",
"@storybook/addon-essentials": "^6.0.7",
"@storybook/addon-info": "^5.3.19",
"@storybook/addon-links": "^6.0.7",
"@storybook/addons": "^6.0.7",
"@storybook/react": "^6.0.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@testing-library/user-event": "^12.1.3",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"cssnano": "^4.1.10",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"np": "^6.5.0",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"rollup-plugin-postcss": "^3.1.8",
"ts-loader": "^8.0.2",
"tsdx": "^0.13.2",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
}
},
"dependencies": {},
"author": "Youssouf EL AZIZI <youssoufelazizi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yjose/reactjs-popup/issues"
},
"keywords": [
"react",
"popup",
"modal",
"tooltip",
"react-modal",
"reactjs",
"react-popup",
"reactjs-popup",
"reactjs-modal",
"react-tooltip"
],
"homepage": "https://react-popup.elazizi.com/",
"repository": "yjose/reactjs-popup",
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}