Skip to content

Commit 5c41a75

Browse files
committed
chore: add bower, component and package json files
1 parent 70c976a commit 5c41a75

3 files changed

Lines changed: 85 additions & 0 deletions

File tree

bower.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "localForage-sessionStorageWrapper",
3+
"version": "1.0.0",
4+
"main": [
5+
"src/localforage-sessionstoragewrapper.js"
6+
],
7+
"ignore": [
8+
".travis.yml",
9+
"CONTRIBUTING.md",
10+
"config.rb",
11+
"Gemfile",
12+
"Gemfile.lock",
13+
"Rakefile",
14+
"LICENSE",
15+
"docs*",
16+
"examples*",
17+
"test*",
18+
"site*"
19+
],
20+
"dependencies": {
21+
"localforage": "https://github.com/mozilla/localForage.git#master"
22+
},
23+
"devDependencies": {
24+
"es6-promise": "~1.0.0",
25+
"requirejs": "~2.1.10",
26+
"mocha": "~1.18.2",
27+
"expect": "~0.3.1",
28+
"assert": "~0.1.0",
29+
"modernizr": "~2.8.1"
30+
}
31+
}

component.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "localForage-sessionStorageWrapper",
3+
"version": "1.0.0",
4+
"dependencies": {
5+
"then/promise": "5.0.0"
6+
},
7+
"scripts": [
8+
"src/localforage-sessionstoragewrapper.js"
9+
],
10+
"main": "src/localforage-sessionstoragewrapper.js"
11+
}

package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "localForage-sessionStorageWrapper",
3+
"author": "Thodoris Greasidis",
4+
"description": "A sessionStorage driver for localForage.",
5+
"keywords": [
6+
"localforage",
7+
"sessionstorage"
8+
],
9+
"version": "1.0.0",
10+
"homepage": "https://github.com/thgreasi/localForage-sessionStorageWrapper",
11+
"repository": {
12+
"type": "git",
13+
"url": "git://github.com/thgreasi/localForage-sessionStorageWrapper.git"
14+
},
15+
"devDependencies": {
16+
"component": "^1.0.0-rc7",
17+
"cors": "^2.3.1",
18+
"grunt": "^0.4.2",
19+
"grunt-contrib-concat": "^0.3.0",
20+
"grunt-contrib-connect": "^0.8.0",
21+
"grunt-contrib-jshint": "^0.9.2",
22+
"grunt-contrib-uglify": "^0.4.0",
23+
"grunt-contrib-watch": "^0.5.0",
24+
"grunt-es3-safe-recast": "^0.1.0",
25+
"grunt-jscs": "^0.8.0",
26+
"grunt-mocha": "^0.4.10",
27+
"grunt-saucelabs": "^5.1.2",
28+
"grunt-shell": "^0.6.4",
29+
"load-grunt-tasks": "^0.4.0",
30+
"mocha": "^1.18.2",
31+
"phantomjs": "^1.9.7-12",
32+
"uglify-js": "^2.3.x"
33+
},
34+
"browser": "src/localforage-sessionstoragewrapper.js",
35+
"main": "src/localforage-sessionstoragewrapper.js",
36+
"licence": "Apache-2.0",
37+
"bugs": {
38+
"url": "http://github.com/thgreasi/localForage-sessionStorageWrapper/issues"
39+
},
40+
"dependencies": {
41+
"promise": "^5.0.0"
42+
}
43+
}

0 commit comments

Comments
 (0)