forked from Pomax/react-onclickoutside
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "react-onclickoutside-es6",
"version": "6.1.0",
"description": "A bare bones onClickOutside ES6 Class component for React",
"main": "index.js",
"files": [
"index.js",
"es5.js",
"pure.js",
"pure-es5.js"
],
"homepage": "https://github.com/nemophrost/react-onclickoutside",
"authors": [
"Pomax <[email protected]>",
"nemophrost"
],
"keywords": [
"react",
"onclick",
"outside",
"onclickoutside"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nemophrost/react-onclickoutside.git"
},
"bugs": {
"url": "https://github.com/nemophrost/react-onclickoutside/issues"
},
"scripts": {
"test": "karma start test/karma.conf.js --single-run",
"build-reg": "babel index.js --out-file es5.js",
"build-pure": "babel pure.js --out-file pure-es5.js",
"build": "npm test && npm run build-reg && npm run build-pure"
},
"dependencies": {
"prop-types": "^15.5.9"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^3.5.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^1.7.0",
"mocha": "^3.3.0",
"object-assign": "^4.1.1",
"phantomjs-prebuilt": "^2.1.14",
"prop-types": "^15.5.9",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"webpack": "^1.13.1"
},
"peerDependencies": {
"react": "^15.5.4",
"react-dom": "^15.5.4"
}
}