-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "react-outside-event",
"description": "A higher order React component that attaches an event listener for events that occur outside of the component element.",
"version": "1.2.7",
"author": {
"name": "Gajus Kuizinas",
"email": "gajus@gajus.com",
"url": "http://gajus.com"
},
"license": "BSD-3-Clause",
"keywords": [
"react-component",
"react",
"event",
"outside",
"click"
],
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/gajus/react-outside-event"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^8.0.4",
"pragmatist": "^3.0.13",
"react": "^0.15.0-alpha.1",
"react-dom": "^0.15.0-alpha.1",
"sinon": "^2.0.0-pre",
"webpack": "^2.1.0-beta.2",
"webpack-dev-server": "^2.0.0-beta"
},
"dependencies": {},
"scripts": {
"pragmatist": "pragmatist --es5",
"lint": "npm run pragmatist lint",
"test": "npm run pragmatist test",
"build": "npm run pragmatist build",
"watch-lint": "npm run pragmatist watch-lint",
"watch-test": "npm run pragmatist watch-test",
"watch-build": "npm run pragmatist watch-build",
"start": "webpack-dev-server"
}
}