forked from addyosmani/basket.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.08 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
{
"name": "basket.js",
"version": "0.3.0",
"description": "A script-loader that handles caching scripts in localStorage where supported",
"keywords": [
"script",
"loader",
"localStorage",
"caching"
],
"homepage": "http://addyosmani.github.com/basket.js",
"bugs": {
"url": "https://github.com/addyosmani/basket.js/issues"
},
"author": {
"name": "Addy Osmani",
"email": "[email protected]",
"url": "http://addyosmani.com"
},
"maintainers": [{
"name": "Addy Osmani"
},{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
},{
"name": "Andrée Hansson",
"email": "[email protected]",
"url": "http://andreehansson.se"
}],
"contributors": [{
"name": "Ironsjp"
},{
"name": "Mathias Bynens"
},{
"name": "Rick Waldron"
},{
"name": "Felipe Morais"
}],
"main": "lib/basket.js",
"repository": {
"type": "git",
"url": "https://github.com/addyosmani/basket.js"
},
"scripts": {
"dev": "grunt",
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.3.10"
},
"licenses": [{
"type": "MIT"
}]
}