-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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": "upper",
"version": "0.1.0",
"description": "File uploader using websockets and the filereader web api",
"main": "index.js",
"scripts": {
"postinstall": "node_modules/.bin/grunt --gruntfile GruntfileBuild.js",
"test": "node_modules/.bin/bower install && node_modules/.bin/grunt test",
"start": "node index.js --scheme=production",
"local": "node index.js --scheme=local",
"dev": "node_modules/.bin/grunt test && node index.js --scheme=dev"
},
"keywords": [
"file",
"uploader",
"upload",
"image"
],
"author": "Iyad Assaf <[email protected]>",
"license": "MIT",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"mocha": "^1.21.0",
"jshint": "^2.5.2",
"jshint-stylish": "^0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-jsdox": "^0.1.5",
"grunt-mocha-test": "^0.11.0",
"express": "^4.7.0",
"chai": "^1.9.1",
"socket.io": "^1.0.6",
"grunt-contrib-concat": "^0.5.0",
"selenium-standalone": "^2.42.0-2.9.0-1",
"grunt-express-server": "^0.4.17",
"npm": "^1.4.23",
"install": "^0.1.7",
"grunt-express": "^1.4.1",
"grunt-shell": "^0.7.0",
"supertest": "^0.13.0",
"grunt-mocha-selenium": "^0.8.1",
"grunt-browserify": "^2.1.4",
"browserify": "^5.9.1",
"remapify": "^0.1.6",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-mkdir": "^0.1.2",
"grunt-contrib-copy": "^0.5.0"
},
"dependencies": {
"q": "^1.0.1",
"grunt-browserify": "^2.1.4",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.0",
"grunt-contrib-uglify": "^0.5.1",
"grunt-mkdir": "^0.1.2",
"grunt-contrib-copy": "^0.5.0",
"chromedriver": "^2.10.0-1",
"bower": "^1.3.9",
"ws": "^0.4.32"
}
}