-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
71 lines (71 loc) · 1.66 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
67
68
69
70
71
{
"name": "redux-file-upload",
"version": "0.0.19",
"description": "Redux-friendly file upload made easy",
"main": "lib/index.js",
"author": "Blueberry",
"repository": {
"type": "git",
"url": "https://github.com/blueberryapps/redux-file-upload.git"
},
"scripts": {
"ava": "ava",
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"clean": "rimraf lib",
"eslint": "eslint src/**",
"test": "npm run eslint && npm run ava"
},
"keywords": [
"react",
"redux"
],
"ava": {
"babel": "inherit",
"files": [
"test/*.js"
],
"require": [
"babel-register"
],
"source": [
"src/*.{js,jsx}"
]
},
"license": "MIT",
"devDependencies": {
"ava": ">=0.15",
"babel-cli": ">=6",
"babel-core": ">=6",
"babel-eslint": ">=6",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": ">=6",
"babel-preset-es2015": ">=6",
"babel-preset-react": ">=6",
"babel-preset-stage-0": ">=6",
"enzyme": "^2.3.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.0.3",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"react": ">=15.5",
"react-addons-test-utils": ">=0.14",
"rimraf": "^2.4.3"
},
"dependencies": {
"bluebird": ">=3",
"core-decorators": ">=0.12",
"detect-node": ">=2",
"fileapi": ">=2",
"immutable": ">=3",
"prop-types": ">=15.5",
"radium": ">=0.19"
},
"peerDependencies": {
"react": ">=15.5",
"react-redux": ">=4",
"redux": ">=3"
}
}