-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.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
{
"name": "getres",
"version": "2.1.0",
"description": "Universal Resource Loader for the Browser and Node.js",
"main": "lib",
"scripts": {
"build": "browserify lib/index.js -s getres -o dist/getres.js",
"build:min": "browserify lib/index.js -s getres | uglifyjs -c > dist/getres.min.js",
"watch": "watchify lib/index.js -s getres -o dist/getres.js",
"lint": "standard",
"unit": "ava -v -T 10s",
"unit:watch": "ava -w -v",
"test": "standard && ava -v",
"coverage": "nyc ava"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"lib/**/*.js"
]
},
"standard": {
"ignore": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebSeed/getres.git"
},
"keywords": [
"getres",
"node",
"browser",
"asset",
"resource",
"loader",
"isomorphic",
"universal",
"png",
"jpeg",
"video",
"audio"
],
"author": "Will Bamford",
"license": "MIT",
"bugs": {
"url": "https://github.com/WebSeed/getres/issues"
},
"homepage": "https://github.com/WebSeed/getres#readme",
"devDependencies": {
"ava": "^0.17.0",
"browserify": "^13.1.0",
"nyc": "^10.0.0",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5",
"standard": "^8.6.0",
"uglifyify": "^3.0.2",
"watchify": "^3.7.0"
},
"dependencies": {
"superagent": "^3.1.0"
}
}