-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "smartstorage",
"version": "0.1.1",
"description": "An HTML5 localStorage helper library that extends the native localStorage API through Javascript. It offers a more efficient and robust way of retrieving, setting and updating important information needed for your web application. This library also includes built in error handling.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "./node_modules/.bin/eslint local_storage.js",
"build": "webpack --progress --colors"
},
"repository": {
"type": "git",
"url": "https://github.com/ipeters90/smartstorage.git"
},
"keywords": [
"smartstorage",
"localStorage",
"web",
"storage"
],
"author": {
"name": "Ike Peters",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ipeters90/smartstorage/issues"
},
"homepage": "https://github.com/ipeters90/smartstorage",
"devDependencies": {
"babel-core": "6.4.0",
"babel-loader": "6.2.1",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"webpack": "1.12.10"
}
}