forked from erikras/react-native-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "react-native-listener",
"description": "A utility component to allow easy access to browser native events",
"version": "1.0.1",
"homepage": "https://github.com/erikras/react-native-listener",
"repository": {
"type": "git",
"url": "git://github.com/erikras/react-native-listener.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:umd && npm run build:umd:min",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/react-native-listener.js --config webpack.config.development.js",
"build:umd:min": "webpack src/index.js dist/react-native-listener.min.js --config webpack.config.production.js",
"clean": "rimraf dist lib",
"lint": "eslint src",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"author": "Erik Rasmussen <rasmussenerik@gmail.com> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "git://github.com/erikras/react-native-listener/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"main": "./lib/index.js",
"keywords": [
"react",
"event",
"listener",
"native",
"reactjs",
"browser"
],
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.1",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"rifraf": "^2.0.2",
"rimraf": "^2.4.3",
"webpack": "^1.12.2"
},
"npmName": "react-native-listener",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}