-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.38 KB
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
{
"name": "html5-uploader",
"version": "0.2.0",
"description": "A pure HTML5 uploader",
"author": "Michele Pangrazzi <xmikex83@gmail.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/mpangrazzi/html5-uploader.git"
},
"scripts": {
"test": "npm run build && cp ./dist/html5-uploader.js ./test/public && node ./test/server.js",
"build": "mkdir ./dist ; ./node_modules/.bin/browserify ./lib/index.js -s Uploader -o ./dist/html5-uploader.js",
"build-min": "mkdir ./dist && ./node_modules/.bin/browserify ./lib/index.js -s Uploader | ./node_modules/.bin/uglifyjs -mc > ./dist/html5-uploader.min.js",
"watch": "./node_modules/.bin/watchify ./examples/index.js ./lib/index.js -o ./examples/public/js/bundle.js -dv",
"dev": "npm run watch & ./node_modules/.bin/supervisor ./examples/server.js"
},
"dependencies": {
"eventemitter3": "^0.1.5"
},
"devDependencies": {
"browserify": "^6.1.0",
"express": "^4.9.8",
"humanize": "0.0.9",
"mocha": "^1.21.5",
"multer": "^0.1.6",
"should": "^4.0.4",
"supervisor": "^0.6.0",
"uglify-js": "^2.4.15",
"underscore": "^1.7.0",
"watchify": "^3.3.1"
},
"keywords": [
"html5",
"uploader",
"upload",
"file",
"drag",
"drop"
],
"license": "MIT",
"jshintConfig": {
"loopfunc": true,
"multistr": true,
"expr": true
}
}