-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.24 KB
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
{
"name": "angularjs-browser-storage",
"version": "1.3.0",
"description": "This is an Angular.js module that provides easy access (read/write/remove/clear) to the browser's local and session storage.",
"main": " ",
"scripts": {
"test": "gulp check-js",
"postinstall": "bower install"
},
"repository": {
"type": "git",
"url": "https://github.com/Knorcedger/angularjs-browser-storage"
},
"keywords": [
"angular",
"localStorage",
"sessionStorage",
"browser"
],
"author": "Knorcedger <knorcedger@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Knorcedger/angularjs-browser-storage/issues"
},
"homepage": "https://github.com/Knorcedger/angularjs-browser-storage",
"jshintConfig": {
"curly": true,
"eqeqeq": true,
"eqnull": true,
"browser": true,
"globals": {
"jQuery": true
},
"loopfunc": true,
"trailing": true,
"scripturl": true
},
"jscsConfig": {
"preset": "google",
"maximumLineLength": 120,
"validateIndentation": "\t",
"requireCamelCaseOrUpperCaseIdentifiers": "ignoreProperties"
},
"devDependencies": {
"browser-sync": "^2.9.3",
"gulp": "^3.9.0",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2"
}
}