-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "cache-lib",
"version": "0.0.6",
"browser": "dist/cache.min.js",
"main": "src/cache.js",
"description": "cache.js 是一个轻量级的 JS 库,对 `localStorage`、`sessionStorage`进行了扩展,增加了序列化方法和过期时间。可以直接存取JSON对象、设置过期时间。",
"author": "Xinyu Peng",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"grunt": "^1.0.3",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~3.3.0",
"grunt-contrib-watch": "~1.1.0",
"grunt-mocha": "^1.0.4",
"gulp": "^3.9.1",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^6.0.0",
"gulp-rename": "^1.2.3",
"gulp-uglify": "^3.0.0",
"mocha": "^5.2.0"
},
"repository": {
"type": "git",
"url": "git+https://kpatrick1989@github.com/Kpatrick1989/cache.js.git"
},
"scripts": {
"test": "grunt test",
"build": "grunt build"
},
"keywords": [
"localstorge",
"sessionstorage",
"expire",
"storage",
"cache"
],
"bugs": {
"url": "https://github.com/Kpatrick1989/cache.js/issues"
},
"homepage": "https://github.com/Kpatrick1989/cache.js#readme"
}