-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "react-light-popover",
"version": "1.0.4",
"description": "A lightweight popover for react",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"dev": "webpack serve --mode development",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:esm": "tsc --module esnext --outDir dist/esm",
"build": "npm run build:cjs && npm run build:esm",
"build-demo": "webpack --mode production",
"lint": "eslint \"{lib,demo}/**\" --ext .ts,.tsx --max-warnings 0 --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ashikmeerankutty/react-light-popover.git"
},
"keywords": [
"react",
"popover",
"lightweight"
],
"author": "Ashik Meerankutty <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashikmeerankutty/react-light-popover/issues"
},
"homepage": "https://github.com/ashikmeerankutty/react-light-popover#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"css-loader": "^5.2.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"html-webpack-plugin": "^5.3.2",
"prettier": "^2.3.2",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"files": [
"dist/**/*"
],
"publishConfig": {
"access": "public"
}
}