-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
38 lines (38 loc) · 892 Bytes
/
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
{
"name": "lscache",
"title": "lscache",
"description": "A simple library that emulates memcache functions using HTML5 localStorage",
"author": "Pamela Fox",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/pamelafox/lscache.git"
},
"homepage": "http://github.com/pamelafox/lscache",
"main": "lscache",
"version": "1.3.2",
"devDependencies": {
"grunt-contrib-qunit": "1.3.x",
"grunt": "1.5.3",
"grunt-browserify": "5.0.x",
"grunt-bump": "0.8.x",
"grunt-cli": "1.0.x",
"grunt-contrib-jshint": "1.1.x",
"grunt-contrib-uglify": "2.1.x",
"browserify-shim": "3.8.x"
},
"scripts": {
"test": "grunt test"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"qunit": "./tests/qunit.js"
},
"browserify-shim": {
"./tests/qunit.js": "qunit"
}
}