-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.71 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"author": {
"name": "Anton Trofimenko",
"url": "https://github.com/r37r0m0d3l"
},
"bugs": {
"url": "https://github.com/r37r0m0d3l/fallback-local-storage/issues"
},
"contributors": [
{
"email": "[email protected]",
"name": "Anton Trofimenko"
}
],
"description": "Fallback for browser LocalStorage",
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-private-methods": "7.18.6",
"@babel/preset-env": "7.18.6",
"@rollup/plugin-commonjs": "22.0.1",
"@rollup/plugin-node-resolve": "13.3.0",
"acorn": "8.7.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.2",
"npm-check": "5.9.2",
"path-parse": ">=1.0.7",
"prettier": "2.7.1",
"remark-cli": "11.0.0",
"remark-lint": "9.1.1",
"remark-preset-lint-consistent": "5.1.1",
"remark-preset-lint-markdown-style-guide": "5.1.2",
"remark-preset-lint-recommended": "6.1.2",
"rollup": "2.75.7",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-terser": "7.0.2"
},
"exports": {
".": {
"browser": {
"import": "./dist/fallback-local-storage.mjs",
"require": "./dist/fallback-local-storage.cjs"
},
"node": {
"import": "./dist/fallback-local-storage.mjs",
"require": "./dist/fallback-local-storage.cjs"
},
"import": "./dist/fallback-local-storage.mjs",
"require": "./dist/fallback-local-storage.cjs",
"default": "./dist/fallback-local-storage.js"
}
},
"files": [
"dist/fallback-local-storage.cjs",
"dist/fallback-local-storage.cjs.map",
"dist/fallback-local-storage.d.ts",
"dist/fallback-local-storage.js",
"dist/fallback-local-storage.js.map",
"dist/fallback-local-storage.mjs",
"dist/fallback-local-storage.mjs.map"
],
"homepage": "https://github.com/r37r0m0d3l/fallback-local-storage",
"keywords": [
"fallback",
"polyfill",
"storage",
"localstorage"
],
"license": "MIT",
"main": "dist/fallback-local-storage.cjs",
"module": "./dist/fallback-local-storage.mjs",
"name": "fallback-local-storage",
"repository": {
"type": "git",
"url": "git+https://github.com/r37r0m0d3l/fallback-local-storage.git"
},
"scripts": {
"build": "rollup --config rollup.config.mjs",
"lint": "eslint ./src/**/*.mjs",
"lint:md": "remark .",
"package:upgrade": "npx npm-check --update",
"test": "jest",
"test:coverage": "jest --collect-coverage"
},
"type": "module",
"types": "./dist/fallback-local-storage.d.ts",
"version": "1.2.1"
}