-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 898 Bytes
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
{
"name": "browser-storage-js",
"version": "1.1.1",
"description": "JavaScript Library for Cross Browser Persistence using WebStorage (LocalStorage, SessionStorage, WebSQL and IndexedDB) for all browsers.",
"repository": {
"type": "git",
"url": "git://github.com/lcavadas/browser-storage-js"
},
"author": {
"name": "Luís Serralheiro",
"email": "[email protected]"
},
"main": "./build/storage.min.js",
"jshintConfig": {
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"latedef": true,
"noarg": true,
"noempty": true,
"nonew": true,
"undef": true,
"unused": true,
"browser": true
},
"devDependencies": {
"gulp": "^3.8.10",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.2",
"gulp-jshint": "^1.9.0",
"gulp-concat": "^2.4.2",
"gulp-shell": "^0.2.11",
"docco": "^0.7.0"
}
}