-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
53
54
55
{
"name": "@georapbox/web-storage",
"version": "2.1.0",
"description": "WebStorage is a JavaScript library that improves the way you work with localStorage or sessionStorage using a simple, localStorage-like API. It allows developers to store many types of data instead of just strings.",
"main": "dist/WebStorage.cmj.min.js",
"module": "dist/WebStorage.esm.min.js",
"unpkg": "dist/WebStorage.umd.min.js",
"files": [
"src/",
"dist/"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"dev": "rollup -c -w",
"lint": "eslint src",
"test": "jest --config jest.config.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"clean": "rimraf dist coverage",
"prepare": "npm-run-all clean lint test build"
},
"repository": {
"type": "git",
"url": "https://github.com/georapbox/web-storage.git"
},
"keywords": [
"localStorage",
"sessionStorage",
"Storage",
"Offline Storage",
"Web Storage",
"DOM Storage"
],
"author": "George Raptis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/georapbox/web-storage/issues"
},
"homepage": "https://github.com/georapbox/web-storage#readme",
"devDependencies": {
"@babel/core": "~7.12.10",
"@babel/plugin-proposal-object-rest-spread": "~7.12.1",
"@babel/preset-env": "~7.12.11",
"@babel/register": "~7.12.10",
"@rollup/plugin-babel": "~5.2.2",
"cross-env": "~7.0.3",
"eslint": "~7.18.0",
"jest": "~26.6.3",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"rollup": "~2.38.0",
"rollup-plugin-terser": "~7.0.2"
},
"browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead"
}