-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "resource-loader",
"version": "1.0.0",
"main": "./src/index.js",
"description": "A generic asset loader, made with web games in mind.",
"author": "Chad Engler <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/englercj/asset-loader",
"repository": {
"type": "git",
"url": "https://github.com/englercj/asset-loader.git"
},
"bugs": {
"url": "https://github.com/englercj/asset-loader/issues"
},
"keywords": [],
"scripts": {
"test": "gulp && testem",
"build": "gulp build",
"docs": "jsdoc -c ./gulp/util/jsdoc.conf.json"
},
"dependencies": {
"async": "^0.9.0",
"eventemitter2": "^0.4.14"
},
"devDependencies": {
"browserify": "^8.0.2",
"chai": "^1.10.0",
"del": "^1.1.0",
"gulp": "^3.8.10",
"gulp-cached": "^1.0.2",
"gulp-jshint": "^1.9.0",
"gulp-mocha": "^2.0.0",
"gulp-plumber": "^0.6.6",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.2",
"gulp-util": "^3.0.1",
"ink-docstrap": "^0.4.12",
"jsdoc": "^3.3.0-alpha13",
"jshint-summary": "^0.4.0",
"require-dir": "^0.1.0",
"run-sequence": "^1.0.2",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.2.1"
}
}