-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
99 lines (99 loc) · 3.18 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-xhr-uploader",
"description": "ReactJS component for XHR (level 2) file upload",
"author": "Harun Hasdal",
"user": "harunhasdal",
"version": "0.5.0",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack.config.babel.js --inline --hot",
"test:lint": "eslint . --ext .js --ext .jsx",
"test": "mocha --require tests/setup.js --compilers js:node_modules/babel-core/register tests/**/*.spec.js",
"test:watch": "npm test -- -w",
"gh-pages": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --profile --json > stats.json",
"dist": "webpack",
"dist:min": "webpack",
"dist:modules": "babel ./src --out-dir ./dist-modules",
"pretest": "npm run test:lint",
"preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist:modules",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy"
},
"main": "dist-modules/index.js",
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.1",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.7",
"cross-env": "^2.0.1",
"css-loader": "^0.25.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"eslint": "^4.18.2",
"eslint-config-prettier": "2.6.0",
"eslint-loader": "^1.2.1",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^10.4.1",
"html-webpack-plugin": "^2.7.2",
"isparta-instrumenter-loader": "^1.0.0",
"jsdom": "9.11.0",
"json-loader": "^0.5.4",
"mocha": "^3.0.2",
"prop-types": "^15.6.0",
"purecss": "^0.6.0",
"react": "^16.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.0.0-beta.3",
"react-test-renderer": "^16.0.0",
"remark": "^3.2.2",
"remark-react": "^1.1.0",
"style-loader": "^0.13.0",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": ">=3.1.11",
"webpack-merge": "^0.14.1",
"react-transition-group": "^2.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rma-consulting/react-xhr-uploader"
},
"homepage": "https://rma-consulting.github.io/react-xhr-uploader/",
"bugs": {
"url": "https://github.com/rma-consulting/react-xhr-uploader/issues"
},
"keywords": [
"react",
"reactjs",
"xhr",
"file-upload",
"XMLHTTPRequest",
"blob-upload",
"large-file-upload",
"react-component"
],
"license": "LICENCE",
"pre-push": [],
"dependencies": {}
}