forked from Pomax/react-onclickoutside
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "react-onclickoutside",
"version": "5.9.0",
"description": "An onClickOutside wrapper for React components",
"main": "index.js",
"files": [
"index.js"
],
"homepage": "https://github.com/Pomax/react-onclickoutside",
"authors": [
"Pomax <pomax@nihongoresources.com>"
],
"keywords": [
"react",
"onclick",
"outside",
"onclickoutside"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Pomax/react-onclickoutside.git"
},
"bugs": {
"url": "https://github.com/Pomax/react-onclickoutside/issues"
},
"scripts": {
"test": "npm run lint && karma start test/karma.conf.js --single-run && npm run test:nodom",
"test:nodom": "mocha test/no-dom-test.js",
"lint": "eslint index.js ./test",
"precommit": "npm run lint"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"eslint": "^3.4.0",
"karma": "^1.4.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.7",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"require-hijack": "^1.2.1",
"webpack": "^1.12.14"
}
}