-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.09 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
{
"name": "load-asset",
"version": "1.2.0",
"description": "Loads a single or multiple assets and returns a promise.",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"dependencies": {
"browser-media-mime-type": "^1.0.0",
"is-promise": "^2.1.0",
"object-assign": "^4.1.1",
"xhr": "^2.4.1"
},
"devDependencies": {
"budo": "^11.2.0",
"parse-wavefront-obj": "^1.0.3",
"tape": "^4.9.0"
},
"scripts": {
"test": "budo test/index.js -o --dir test/ --live",
"example": "budo test/custom-type.js -o --dir test/ --live",
"example-font": "budo test/custom-font.js -o --dir test/ --live"
},
"keywords": [
"mp3",
"jpg",
"jpeg",
"image",
"loader",
"loading",
"assets",
"loaders"
],
"repository": {
"type": "git",
"url": "git://github.com/mattdesl/load-asset.git"
},
"homepage": "https://github.com/mattdesl/load-asset",
"bugs": {
"url": "https://github.com/mattdesl/load-asset/issues"
}
}