-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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": "simple-uploader",
"githubOwner": "mycolorway",
"version": "3.0.0",
"description": "A HTML5 upload component without UI",
"keywords": "upload",
"repository": {
"type": "git",
"url": "[email protected]:mycolorway/simple-uploader.git"
},
"author": "farthinker",
"license": "MIT",
"bugs": {
"url": "https://github.com/mycolorway/simple-uploader/issues"
},
"scripts":{
"start": "gulp",
"test": "gulp test"
},
"main": "dist/simple-uploader.js",
"homepage": "https://github.com/mycolorway/simple-uploader",
"umd": {
"name": "SimpleUploader",
"dependencies": {
"cjs": ["jquery","simple-module"],
"global": ["jQuery","SimpleModule"],
"params": ["$","SimpleModule"]
}
},
"dependencies": {
"jquery": "~3.1.0",
"simple-module": "~3.0.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-coffee-coverage": "^1.1.1",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"coffeelint": "^1.15.0",
"coveralls": "^2.11.8",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.2",
"karma": "^1.1.1",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-coffee-coverage": "^1.1.2",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"lodash": "^4.13.1",
"mocha": "^2.5.3",
"node-sass": "^3.8.0",
"phantomjs-prebuilt": "^2.1.7",
"sinon": "^1.17.5",
"through2": "^2.0.1",
"uglify-js": "^2.6.2",
"watchify": "^3.7.0"
}
}