-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "simple-webstorage",
"version": "1.6.1",
"description": "Lightweight utilities that can make easier to write and read application storage in client browser.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib; webpack",
"prepublish": "babel src -d lib; webpack",
"pretest": "babel src -d lib; webpack",
"test": "IS_TEST_MODE=true jest --coverage"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sutanlab/simple-webstorage.git"
},
"keywords": [
"browser storage",
"web storage",
"local storage",
"session storage",
"cookie storage",
"client storage",
"storage",
"cookie",
"local",
"session"
],
"author": "Sutan Nst. <sutan.gnst@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sutanlab/simple-webstorage/issues"
},
"homepage": "https://sutanlab.js.org/simple-webstorage",
"devDependencies": {
"@babel/cli": "7.6.4",
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"jest": "24.9.0",
"webpack": "4.41.2",
"jsdom": "15.2.0",
"webpack-cli": "3.3.9"
},
"dependencies": {}
}