-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "popman",
"version": "3.0.0",
"description": "Popover component for React",
"main": "dist/index.js",
"scripts": {
"build": "mkdirp dist && babel src/index.js -o dist/index.js",
"watch": "mkdirp dist && babel src/index.js -w -o dist/index.js",
"build:examples": "browserify -t babelify examples/index.js -o examples/bundle.js",
"build:all": "npm run build && npm run build:examples",
"test": "echo \"No tests specified\"",
"format": "prettier \"src/*.js\" --write",
"lint": "eslint src",
"prepublish": "npm run build && npm run build:examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wunderflats/popman.git"
},
"keywords": [
"react",
"popover",
"react-popover",
"component",
"react",
"component",
"popman"
],
"author": "Wunderflats GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/wunderflats/popman/issues"
},
"homepage": "https://github.com/wunderflats/popman#readme",
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^15.0.1",
"react-dom": "^15.0.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"eslint": "^6.0.1",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"mkdirp": "^0.5.1",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"scrollparent": "^2.0.1"
}
}