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 12
/
package.json
62 lines (62 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fine-uploader-wrappers",
"version": "1.1.0",
"license": "MIT",
"description": "Fine Uploader core ES6 class wrappers that provide additional features.",
"author": {
"name": "Ray Nicholus",
"url": "http://raynicholus.com"
},
"homepage": "https://github.com/FineUploader/fine-uploader-wrappers#readme",
"repository": "https://github.com/FineUploader/fine-uploader-wrappers",
"keywords": [
"file",
"blob",
"file-uploader",
"fine-uploader",
"upload"
],
"main": "traditional.js",
"dependencies": {
"object-assign": "4.1.0"
},
"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-plugin-syntax-class-properties": "6.13.0",
"babel-plugin-transform-class-properties": "6.23.0",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"es6-promise": "4.1.0",
"eslint": "3.18.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-sauce-launcher": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "2.0.3",
"webpack": "2.3.2",
"webpack-node-externals": "1.5.4"
},
"engines": {
"node": ">=5.0.0"
},
"peerDependencies": {
"fine-uploader": ">=5.14.2 <6.0.0"
},
"scripts": {
"build": "rm -rf lib && mkdir -p lib && cp -pR src/ lib && babel lib --out-dir lib",
"lint": "eslint src/. --ext .js --cache",
"manual-test": "webpack --config config/webpack.manual-test.config.js --watch --display-error-details",
"push-to-npm": "cp package.json README.md LICENSE lib && (cd lib ; npm publish --tag next)",
"release": "npm run test && npm run build && npm run push-to-npm",
"test": "npm run lint && if [ $CI ]; then karma start config/karma.conf; else karma start config/karma.dev.conf; fi"
}
}