-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "redux-actionemitter",
"version": "1.0.1",
"description": "Redux Action Emitter",
"main": "index.js",
"scripts": {
"watch": "babel --watch --presets es2015,stage-2 -d lib/ src/",
"compile": "babel --presets es2015,stage-2 -d lib/ src/",
"prepublish": "npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Action",
"Redux",
"Middleware",
"EventEmitter"
],
"author": "Sam Gentle <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"eslint-plugin-react": "^3.16.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/sgentle/redux-actionemitter.git"
},
"bugs": {
"url": "https://github.com/sgentle/redux-actionemitter/issues"
},
"homepage": "https://github.com/sgentle/redux-actionemitter"
}