-
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) · 2.12 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.12 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-clickout-handler",
"version": "1.2.1",
"description": "A flexible clickout handler for React",
"main": "lib/react-clickout-handler.cjs.js",
"module": "lib/react-clickout-handler.esm.js",
"author": "Knowledge to Practice <opensource@k2p.com> (http://www.knowledgetopractice.com/)",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/k2p-ed/react-clickout-handler"
},
"scripts": {
"build": "rimraf lib && rollup -c && yarn copy-source",
"ci": "yarn test && yarn lint && yarn flow check",
"copy-source": "cp src/index.js lib/react-clickout-handler.cjs.js.flow && cp src/index.js lib/react-clickout-handler.esm.js.flow",
"lint": "eslint src",
"prepublish": "yarn build",
"preversion": "yarn ci",
"test": "NODE_ENV=test mocha --require src/test/testHelper.js src/test/index.spec.js"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.66.0",
"jsdom": "^11.6.2",
"mocha": "^5.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.3",
"sinon": "^4.4.2"
},
"peerDependencies": {
"react": "^15.5.x || ^16.x",
"react-dom": "^15.5.x || ^16.x"
},
"files": [
"lib"
],
"keywords": [
"click outside",
"click out",
"clickout",
"react"
]
}