-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
92 lines (92 loc) · 2.38 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "image-manipulation",
"version": "0.0.4",
"description": "Library for rotating, cropping, and resizing images within browser",
"main": "src/methods.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"start": "node example/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sfarthin/crop-rotate-and-sample-in-browser.git"
},
"author": "Steve Farthing",
"license": "MIT",
"bugs": {
"url": "https://github.com/sfarthin/crop-rotate-and-sample-in-browser/issues"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./bower_components/jquery/dist/jquery.js",
"angular": "./bower_components/angular/angular.js",
"jcrop": "./bower_components/jcrop/js/jquery.Jcrop.js"
},
"browserify-shim": {
"jquery": {
"exports": "$"
},
"angular": {
"exports": "angular"
},
"jcrop": {
"exports": null,
"depends": [
"jquery:$"
]
}
},
"testling": {
"files": "./testling-ci.js",
"scripts": [
"./node_modules/jasmine-reporters/lib/jasmine-2.0.0/jasmine.js",
"./node_modules/jasmine-reporters/lib/jasmine-2.0.0/jasmine-html.js",
"./node_modules/jasmine-reporters/src/tap_reporter.js",
"./node_modules/jasmine-reporters/lib/jasmine-2.0.0/boot.js"
],
"browsers": [
"ie/10..latest",
"chrome/22..latest",
"firefox/22..latest",
"safari/6..latest",
"opera/11.0..latest",
"iphone/7",
"ipad/7",
"android-browser/latest"
]
},
"homepage": "https://github.com/sfarthin/crop-rotate-and-sample-in-browser",
"dependencies": {
"express": "^4.6.1",
"gulp-jade": "^0.6.1",
"gulp-less": "^1.3.1",
"gulp": "^3.8.5",
"browserify": "^4.2.0",
"vinyl-source-stream": "^0.1.1",
"uglifyify": "^2.5.0",
"gcs-signed-urls": "0.0.1",
"jade": "^1.4.2",
"body-parser": "^1.4.3",
"browserify-shim": "^3.6.0",
"async": "^0.9.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"chromedriver": "^2.10.0-1",
"jasmine-reporters": "^2.0.3",
"karma": "^0.12.22",
"karma-browserify": "^0.2.1",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.1.4",
"lodash": "^3.10.0",
"resemblejs": "^1.1.2"
}
}