-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "local-storage-fallback",
"version": "5.0.0",
"description": "Check and use appropriate storage adapter for browser (localStorage, sessionStorage, cookies, memory)",
"main": "lib/index.js",
"typings": "index.d.ts",
"files": [
"lib/",
"index.d.ts"
],
"scripts": {
"test": "ava",
"build:node": "babel --presets @babel/env src --out-dir lib",
"build:browser": "webpack --config webpack.config.js",
"prepublish": "mkdir -p lib && npm run build:node && npm run build:browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ripeworks/local-storage-fallback.git"
},
"keywords": [
"localStorage"
],
"author": "Mike Kruk <[email protected]> (http://ripeworks.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ripeworks/local-storage-fallback/issues"
},
"homepage": "https://github.com/ripeworks/local-storage-fallback#readme",
"dependencies": {
"cookie": "^1.0.1"
},
"devDependencies": {
"ava": "^0.21.0",
"@babel/core": "7.26.0",
"@babel/cli": "7.25.9",
"@babel/preset-env": "7.26.0",
"jsdom": "^11.12.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}