-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.21 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
{
"name": "web-storage-es6",
"version": "1.2.0",
"description": "This is a library written in ES6. It provides an abstraction layer for using the HTML5 web storages, localStorage and sessionStorage. On top of utilizing these Storage types, a Global storage is introduced for temporary data storage.",
"repository": {
"type": "git",
"url": "https://github.com/alanzhaonys/web-storage-es6"
},
"main": "dist/src/index.js",
"scripts": {
"lint": "eslint ./src/* && eslint ./test/*",
"test": "mocha --reporter spec --require babel-core/register ./test/*",
"cover": "nyc --extension .js --reporter=lcov --reporter=text mocha --require babel-core/register ./test/*",
"doc": "jsdoc ./src/* -d ./doc",
"build": "rimraf ./dist && eslint ./src/* && babel ./src/*.js --out-dir ./dist"
},
"keywords": [
"web",
"storage",
"localStorage",
"sessionStorage"
],
"author": "Alan Zhao",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"cp-cli": "^2.0.0",
"eslint": "^6.0.1",
"jsdoc": "^3.6.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"rimraf": "^3.0.2"
}
}