-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "jfum",
"version": "1.0.3",
"description": "Minimal jQuery File Upload Middleware",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "supervisor -w . -- examples/server.coffee",
"build": "coffee --bare --compile --output lib/ src/*.coffee",
"prepublish": "coffee --bare --compile --output lib/ src/*.coffee",
"postpublish": "rm -rf lib/*",
"test": "mocha -w -b -c --check-leaks test/suite.coffee -R progress --compilers coffee:coffee-script/register",
"test-drone": "node_modules/.bin/mocha -b -c --check-leaks test/suite.coffee -R spec --compilers coffee:coffee-script/register"
},
"repository": {
"type": "git",
"url": "git://github.com/Turistforeningen/node-jfum.git"
},
"keywords": [
"image",
"upload",
"jquery",
"jquery-file-upload",
"express",
"expressjs",
"middleware"
],
"contributors": [
"Håvard Ranum <havard.ranum@bouvet.no>",
"Hans Kristian Flaatten <hans.kristian.flaatten@turistforeningen.no>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-jfum/issues"
},
"homepage": "https://github.com/Turistforeningen/node-jfum",
"devDependencies": {
"coffee-script": "^1.8.0",
"express": "^4.8.7",
"mocha": "^1.21.4",
"morgan": "^1.3.0",
"supervisor": "^0.6.0"
},
"dependencies": {
"multiparty": "~3.3.2"
},
"engines": {
"node": ">=0.10.3 <0.12"
}
}