This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
70 lines (70 loc) · 1.8 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
{
"version": "2.2.1",
"name": "angular-evaporate",
"description": "AngularJS module for the EvaporateJS library",
"homepage": "http://github.com/uqee/angular-evaporate",
"keywords": [
"upload",
"resumable upload",
"evaporate",
"angular"
],
"license": "MIT",
"main": "lib/angular-evaporate.js",
"repository": {
"type": "git",
"url": "https://github.com/uqee/angular-evaporate.git"
},
"engines": {
"node": "4.x"
},
"dependencies": {
"angular": "^1.5.8",
"evaporate": "^1.5.2"
},
"devDependencies": {
"angular-mocks": "^1.5.8",
"bootstrap": "^3.3.7",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"diff": "^3.0.0",
"express": "^4.14.0",
"font-awesome": "^4.6.3",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon": "^1.0.5",
"mocha": "^3.0.2",
"morgan": "^1.7.0",
"serve-static": "^1.11.1",
"sinon": "^1.17.5",
"uglify-js": "^2.7.3"
},
"scripts": {
"browserify": "cd example && browserify -o bundle.js index.js",
"uglify": "cd lib && uglifyjs --compress --mangle --screw-ie8 -o angular-evaporate.min.js --source-map angular-evaporate.min.js.map -- angular-evaporate.js",
"start": "npm run browserify && node ./example/server.js",
"start:dev": "foreman run npm start",
"test": "karma start ./test/karma.conf.js"
},
"author": {
"name": "Denis Zhbankov",
"url": "https://github.com/uqee"
},
"contributors": [
{
"name": "Marvin Killing",
"url": "https://github.com/mkilling"
},
{
"name": "Eugene Khashin",
"url": "https://github.com/adastreamer"
},
{
"name": "Dmytro Riazanov",
"url": "https://github.com/ryaz"
}
]
}