This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
78 lines (78 loc) · 2.51 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
{
"name": "react-fine-uploader",
"version": "1.1.1",
"license": "MIT",
"description": "React UI components for using Fine Uploader in a React-based project.",
"author": {
"name": "Ray Nicholus",
"url": "http://raynicholus.com"
},
"homepage": "https://github.com/FineUploader/react-fine-uploader#readme",
"repository": "https://github.com/FineUploader/react-fine-uploader",
"keywords": [
"file",
"blob",
"file-uploader",
"fine-uploader",
"jsx",
"react",
"upload",
"widget"
],
"main": "gallery/index.js",
"peerDependencies": {
"react": "0.14.x - 16.x",
"prop-types": "15.x"
},
"dependencies": {
"fine-uploader-wrappers": "^1.0.1",
"object-assign": "4.1.1",
"react-transition-group": "2.x"
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-core": "6.24.0",
"babel-eslint": "7.2.0",
"babel-loader": "6.4.1",
"babel-plugin-rewire": "1.0.0",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "6.23.0",
"babel-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"css-loader": "0.27.3",
"es6-promise": "4.1.0",
"eslint": "3.18.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "2.1.0",
"fine-uploader": "5.14.2",
"jasmine": "2.5.3",
"jasmine-core": "2.5.2",
"karma": "1.5.0",
"karma-firefox-launcher": "1.0.1",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "2.0.3",
"pica": "2.0.8",
"react": "16.4.1",
"react-dom": "16.4.1",
"prop-types": "15.5.8",
"style-loader": "0.16.0",
"webpack": "2.3.2",
"webpack-node-externals": "1.5.4"
},
"engines": {
"node": ">=5.0.0"
},
"scripts": {
"build": "rm -rf lib && mkdir -p lib && rsync -av --exclude='test' src/ lib && babel lib --out-dir lib && find lib -type f -name '*.jsx' -delete",
"lint": "eslint src/. --ext .js,.jsx --cache",
"manual-test": "webpack --config config/webpack.manual-test.config.js --watch",
"push-to-npm": "cp package.json README.md LICENSE lib && (cd lib ; npm publish)",
"release": "npm run test && npm run build && npm run push-to-npm",
"start": "(php -S 0.0.0.0:9090 -t src/test/manual -c src/test/manual/php.ini)",
"start-no-s3": "php -S 0.0.0.0:9090 -t src/test/manual -c src/test/manual/php.ini",
"test": "npm run lint && karma start config/karma.conf"
}
}